2023-06-29 14:00:39 +02:00
|
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page
|
|
|
|
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
2023-06-30 04:39:01 +02:00
|
|
|
|
|
|
|
|
|
# Nix Reference Manual:
|
|
|
|
|
# https://nixos.org/manual/nix/stable/
|
|
|
|
|
# NixOS Packages / Options:
|
|
|
|
|
# https://search.nixos.org/packages?
|
|
|
|
|
|
2023-06-30 07:08:28 +02:00
|
|
|
|
# Other things to consider:
|
|
|
|
|
# Telegraf
|
|
|
|
|
|
2023-06-30 10:31:23 +02:00
|
|
|
|
{ lib, config, pkgs, ... }: {
|
2023-06-29 14:00:39 +02:00
|
|
|
|
imports =
|
|
|
|
|
[
|
|
|
|
|
# Include the results of the hardware scan.
|
2023-06-30 01:02:18 +02:00
|
|
|
|
# Should be set on the machine's configuration.nix
|
|
|
|
|
# ./hardware-configuration.nix
|
2023-06-29 14:18:38 +02:00
|
|
|
|
# Home-Manager Nix configuration file.
|
2023-06-30 16:09:41 +02:00
|
|
|
|
./home-manager.nix
|
2023-06-30 00:56:45 +02:00
|
|
|
|
# Gnome configuration file.
|
|
|
|
|
./gnome.nix
|
2023-06-30 04:39:01 +02:00
|
|
|
|
# Promtail logging
|
|
|
|
|
./promtail.nix
|
2023-06-29 14:00:39 +02:00
|
|
|
|
];
|
2023-06-29 08:32:19 +02:00
|
|
|
|
|
2023-06-29 14:40:55 +02:00
|
|
|
|
# Keep the system up-to-date automatically
|
|
|
|
|
system = {
|
|
|
|
|
autoUpgrade = {
|
|
|
|
|
enable = true;
|
|
|
|
|
allowReboot = false;
|
2023-06-29 14:44:24 +02:00
|
|
|
|
channel = https://channels.nixos.org/nixos-23.05;
|
2023-06-29 14:40:55 +02:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-29 14:00:39 +02:00
|
|
|
|
# Bootloader.
|
2023-06-30 13:02:01 +02:00
|
|
|
|
# boot.loader.systemd-boot.enable = true;
|
2023-06-29 14:00:39 +02:00
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
2023-06-29 15:01:32 +02:00
|
|
|
|
boot.tmp.cleanOnBoot = true;
|
2023-06-30 15:37:27 +02:00
|
|
|
|
# Hibernation resume device:
|
2023-06-30 15:35:31 +02:00
|
|
|
|
boot.resumeDevice = "/dev/disk/by-uuid/67600fc1-6d26-4d2f-b2d3-a99174654058";
|
2023-06-29 14:00:39 +02:00
|
|
|
|
# Plymouth splash screen
|
|
|
|
|
boot.plymouth.enable = true;
|
2023-06-29 14:16:58 +02:00
|
|
|
|
boot.initrd.systemd.enable = true;
|
|
|
|
|
boot.kernelParams = ["quiet"];
|
2023-06-30 12:57:39 +02:00
|
|
|
|
# SecureBoot
|
|
|
|
|
boot.loader.systemd-boot.enable = lib.mkForce false;
|
|
|
|
|
boot.lanzaboote.enable = true;
|
2023-06-30 13:03:44 +02:00
|
|
|
|
boot.lanzaboote.pkiBundle = "/etc/secureboot";
|
2023-06-30 12:57:39 +02:00
|
|
|
|
|
2023-06-29 14:00:39 +02:00
|
|
|
|
# Setup keyfile
|
|
|
|
|
boot.initrd.secrets = {
|
|
|
|
|
"/crypto_keyfile.bin" = null;
|
2023-06-29 08:32:19 +02:00
|
|
|
|
};
|
|
|
|
|
|
2023-06-29 14:00:39 +02:00
|
|
|
|
# Enable swap on luks
|
|
|
|
|
boot.initrd.luks.devices."luks-9704447e-6bd0-4a35-9c24-20cbab81c431".device = "/dev/disk/by-uuid/9704447e-6bd0-4a35-9c24-20cbab81c431";
|
|
|
|
|
boot.initrd.luks.devices."luks-9704447e-6bd0-4a35-9c24-20cbab81c431".keyFile = "/crypto_keyfile.bin";
|
|
|
|
|
|
|
|
|
|
# Enable networking
|
2023-06-29 08:32:19 +02:00
|
|
|
|
networking = {
|
2023-06-29 14:00:39 +02:00
|
|
|
|
hostName = "nixos-p1";
|
|
|
|
|
networkmanager = {
|
2023-06-29 08:32:19 +02:00
|
|
|
|
enable = true;
|
|
|
|
|
};
|
2023-06-29 14:00:39 +02:00
|
|
|
|
enableIPv6 = false;
|
|
|
|
|
firewall = {
|
2023-06-29 08:32:19 +02:00
|
|
|
|
enable = true;
|
2023-06-29 14:00:39 +02:00
|
|
|
|
allowedTCPPorts = [ 22 ];
|
|
|
|
|
allowedUDPPorts = [ ];
|
2023-06-29 08:32:19 +02:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-29 14:00:39 +02:00
|
|
|
|
# Set your time zone.
|
|
|
|
|
time.timeZone = "Asia/Tokyo";
|
|
|
|
|
|
|
|
|
|
# Select internationalisation properties.
|
|
|
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
|
|
|
|
|
|
|
|
i18n.extraLocaleSettings = {
|
|
|
|
|
LC_ADDRESS = "en_US.UTF-8";
|
|
|
|
|
LC_IDENTIFICATION = "en_US.UTF-8";
|
|
|
|
|
LC_MEASUREMENT = "en_US.UTF-8";
|
|
|
|
|
LC_MONETARY = "en_US.UTF-8";
|
|
|
|
|
LC_NAME = "en_US.UTF-8";
|
|
|
|
|
LC_NUMERIC = "en_US.UTF-8";
|
|
|
|
|
LC_PAPER = "en_US.UTF-8";
|
|
|
|
|
LC_TELEPHONE = "en_US.UTF-8";
|
|
|
|
|
LC_TIME = "en_US.UTF-8";
|
2023-06-29 08:32:19 +02:00
|
|
|
|
};
|
|
|
|
|
|
2023-06-29 14:00:39 +02:00
|
|
|
|
# Configure the fingerprint reader
|
|
|
|
|
services.fprintd = {
|
|
|
|
|
enable = true;
|
|
|
|
|
tod.enable = true;
|
|
|
|
|
tod.driver = pkgs.libfprint-2-tod1-vfs0090;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Configure keymap in X11
|
|
|
|
|
services.xserver = {
|
|
|
|
|
enable = true;
|
|
|
|
|
layout = "us";
|
|
|
|
|
xkbVariant = "";
|
|
|
|
|
libinput = {
|
2023-06-29 08:32:19 +02:00
|
|
|
|
enable = true;
|
2023-06-29 14:00:39 +02:00
|
|
|
|
touchpad.tapping = true;
|
2023-06-29 08:32:19 +02:00
|
|
|
|
};
|
2023-06-29 14:00:39 +02:00
|
|
|
|
# Enable nVidia drivers
|
|
|
|
|
videoDrivers = [ "nvidia" ];
|
|
|
|
|
autorun = true;
|
2023-06-29 08:32:19 +02:00
|
|
|
|
};
|
2023-06-30 07:08:28 +02:00
|
|
|
|
|
|
|
|
|
# Enable nVidia PRIME Render Offload
|
|
|
|
|
# https://github.com/NixOS/nixos-hardware/blob/master/lenovo/thinkpad/p1/3th-gen/nvidia.nix
|
|
|
|
|
hardware.nvidia.prime = {
|
|
|
|
|
# Bus ID of the Intel GPU.
|
|
|
|
|
intelBusId = lib.mkDefault "PCI:0:2:0";
|
|
|
|
|
# Bus ID of the NVIDIA GPU.
|
|
|
|
|
nvidiaBusId = lib.mkDefault "PCI:1:0:0";
|
|
|
|
|
};
|
2023-06-29 08:32:19 +02:00
|
|
|
|
|
2023-06-29 14:00:39 +02:00
|
|
|
|
# Enable sound with pipewire.
|
|
|
|
|
sound.enable = true;
|
|
|
|
|
hardware.pulseaudio.enable = false;
|
|
|
|
|
security.rtkit.enable = true;
|
|
|
|
|
services.pipewire = {
|
|
|
|
|
enable = true;
|
|
|
|
|
alsa.enable = true;
|
|
|
|
|
alsa.support32Bit = true;
|
|
|
|
|
pulse.enable = true;
|
|
|
|
|
};
|
2023-06-29 08:32:19 +02:00
|
|
|
|
|
2023-06-29 14:00:39 +02:00
|
|
|
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
|
|
|
|
users.users.albert = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
description = "Albert J. Copeland";
|
|
|
|
|
extraGroups = [ "networkmanager" "wheel" ];
|
|
|
|
|
packages = with pkgs; [
|
|
|
|
|
firefox
|
|
|
|
|
bitwarden
|
|
|
|
|
steam
|
|
|
|
|
lutris
|
|
|
|
|
vlc
|
2023-06-30 04:39:01 +02:00
|
|
|
|
vscodium
|
2023-06-29 08:32:19 +02:00
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-30 07:08:28 +02:00
|
|
|
|
# Allow unfree packages
|
2023-06-29 14:00:39 +02:00
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
|
|
2023-06-30 07:08:28 +02:00
|
|
|
|
# Enable flakes: https://nixos.wiki/wiki/Flakes
|
2023-06-30 11:30:55 +02:00
|
|
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
|
|
|
|
2023-06-29 14:00:39 +02:00
|
|
|
|
# List packages installed in system profile. To search, run:
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
# Secureboot
|
|
|
|
|
sbctl
|
|
|
|
|
# Fingerprint Reader
|
|
|
|
|
fprintd
|
|
|
|
|
|
|
|
|
|
# General packages
|
2023-06-30 01:13:12 +02:00
|
|
|
|
# https://github.com/gvolpe/dconf2nix
|
|
|
|
|
dconf2nix
|
2023-06-29 14:00:39 +02:00
|
|
|
|
wget
|
|
|
|
|
vim
|
|
|
|
|
git
|
|
|
|
|
curl
|
|
|
|
|
htop
|
|
|
|
|
iftop
|
|
|
|
|
nload
|
|
|
|
|
iotop
|
|
|
|
|
glxinfo
|
|
|
|
|
tailscale
|
2023-06-30 15:51:09 +02:00
|
|
|
|
neofetch
|
2023-06-29 14:00:39 +02:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# Enable the OpenSSH daemon and Tailscale.
|
|
|
|
|
services.openssh.enable = true;
|
|
|
|
|
services.tailscale.enable = true;
|
|
|
|
|
|
2023-06-29 14:16:58 +02:00
|
|
|
|
# Garbage collection -- Keep the system clean
|
2023-06-29 14:24:22 +02:00
|
|
|
|
nix.gc = {
|
2023-06-29 14:16:58 +02:00
|
|
|
|
automatic = true;
|
|
|
|
|
dates = "weekly";
|
2023-06-30 12:17:13 +02:00
|
|
|
|
options = "--delete-older-than 7d";
|
2023-06-29 08:32:19 +02:00
|
|
|
|
};
|
2023-06-29 14:00:39 +02:00
|
|
|
|
|
2023-06-29 14:40:55 +02:00
|
|
|
|
# Configure BASH exports
|
|
|
|
|
programs = {
|
|
|
|
|
bash = {
|
|
|
|
|
enableCompletion = true;
|
|
|
|
|
enableLsColors = true;
|
|
|
|
|
shellAliases = {
|
|
|
|
|
d = "docker";
|
|
|
|
|
dc = "docker-compose";
|
|
|
|
|
de = "docker exec -it";
|
|
|
|
|
ddate = "date +%Y.%m.%d";
|
|
|
|
|
dday = "date +%A";
|
2023-06-30 01:04:50 +02:00
|
|
|
|
cp = "rsync -avr";
|
2023-06-29 14:40:55 +02:00
|
|
|
|
g = "git";
|
|
|
|
|
ga = "git add -A";
|
|
|
|
|
gb = "git branch";
|
|
|
|
|
gc = "git commit";
|
|
|
|
|
gca = "git commit -a";
|
|
|
|
|
gco = "git checkout";
|
|
|
|
|
gd = "git diff";
|
2023-06-30 01:04:31 +02:00
|
|
|
|
gp = "git pull --prune";
|
|
|
|
|
gpu = "git push origin HEAD";
|
2023-06-29 14:40:55 +02:00
|
|
|
|
gs = "git status -sb";
|
|
|
|
|
hs = "home-manager switch";
|
|
|
|
|
ll = "ls -lah";
|
|
|
|
|
rm = "rm -i";
|
|
|
|
|
tdate = "date +%Y.%m.%d..%H.%M";
|
|
|
|
|
ttime = "date +%H.%M";
|
2023-06-30 01:14:15 +02:00
|
|
|
|
nr = "nixos-rebuild";
|
2023-06-29 14:45:06 +02:00
|
|
|
|
};
|
2023-06-29 14:40:55 +02:00
|
|
|
|
};
|
2023-06-29 14:45:45 +02:00
|
|
|
|
};
|
2023-06-29 14:40:55 +02:00
|
|
|
|
|
2023-06-29 14:00:39 +02:00
|
|
|
|
# This value determines the NixOS release from which the default
|
|
|
|
|
# settings for stateful data, like file locations and database versions
|
|
|
|
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
|
|
|
|
# this value at the release version of the first install of this system.
|
|
|
|
|
# Before changing this value read the documentation for this option
|
|
|
|
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
2023-06-29 14:25:10 +02:00
|
|
|
|
system.stateVersion = "23.05"; # Did you read the comment?
|
2023-06-29 14:45:45 +02:00
|
|
|
|
}
|