This commit is contained in:
Morten Olsen
2023-11-14 20:32:30 +01:00
parent fbc50c98d2
commit 14ae82222c
9 changed files with 30 additions and 14 deletions

View File

@@ -21,19 +21,30 @@
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
boot.initrd.availableKernelModules = [
"aesni_intel"
"cryptd"
];
# Setup keyfile # Setup keyfile
boot.initrd.secrets = { boot.initrd.secrets = {
"/crypto_keyfile.bin" = null; "/crypto_keyfile.bin" = null;
}; };
# Enable swap on luks
boot.initrd.luks.devices."luks-20428df9-98ee-45a6-9dc1-fcafc0ce86f2".device = "/dev/disk/by-uuid/20428df9-98ee-45a6-9dc1-fcafc0ce86f2";
boot.initrd.luks.devices."luks-20428df9-98ee-45a6-9dc1-fcafc0ce86f2".keyFile = "/crypto_keyfile.bin";
boot.kernelParams = [ "i915.force_probe=9b41" ]; boot.kernelParams = [ "i915.force_probe=9b41" ];
networking.hostName = "alice-xps"; # Define your hostname. networking.hostName = "alice-xps"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
system.autoUpgrade = {
enable = true;
};
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
system.stateVersion = "23.05"; # Did you read the comment? system.stateVersion = "23.05"; # Did you read the comment?
} }

View File

@@ -8,33 +8,30 @@
[ (modulesPath + "/installer/scan/not-detected.nix") [ (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "usbhid" "sd_mod" "rtsx_pci_sdmmc" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ]; boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" =
{ device = "/dev/disk/by-uuid/56f7a61b-1689-42b6-b697-5c88b8e75fc1"; { device = "/dev/disk/by-uuid/d458bbe6-619d-4080-90a3-524f17014f22";
fsType = "ext4"; fsType = "ext4";
}; };
boot.initrd.luks.devices."luks-f8db07f5-1808-4591-8bbf-81798eb5d4c1".device = "/dev/disk/by-uuid/f8db07f5-1808-4591-8bbf-81798eb5d4c1"; boot.initrd.luks.devices."luks-c6580d84-86a0-4de4-820f-bbdea8109ae4".device = "/dev/disk/by-uuid/c6580d84-86a0-4de4-820f-bbdea8109ae4";
fileSystems."/boot" = fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/90A7-3803"; { device = "/dev/disk/by-uuid/98D0-6C62";
fsType = "vfat"; fsType = "vfat";
}; };
swapDevices = swapDevices = [ ];
[ { device = "/dev/disk/by-uuid/e92ed4b9-8ee0-4d87-9249-f6e4223abbbe"; }
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's # (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction # still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`. # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true; networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp112s0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp2s0.useDHCP = lib.mkDefault true; # networking.interfaces.wlp2s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";

View File

@@ -7,6 +7,9 @@
./network.nix ./network.nix
./security.nix ./security.nix
]; ];
environment.systemPackages = [
pkgs.nfs-utils
];
services = { services = {
fwupd.enable = true; fwupd.enable = true;

View File

@@ -24,4 +24,6 @@
pkgs.gnupg pkgs.gnupg
pkgs.pinentry-gnome pkgs.pinentry-gnome
]; ];
networking.firewall.checkReversePath = false;
} }

1
os.sh
View File

@@ -29,7 +29,6 @@ function upgrade() {
if git -C "$LOCATION" diff-index --quiet HEAD --; then if git -C "$LOCATION" diff-index --quiet HEAD --; then
nix flake update --commit-lock-file "$LOCATION" nix flake update --commit-lock-file "$LOCATION"
apply $1 apply $1
cleanup
else else
echo "Error: git working tree is dirty" echo "Error: git working tree is dirty"
exit 1 exit 1

View File

@@ -3,7 +3,7 @@
let let
astronvim = builtins.fetchGit { astronvim = builtins.fetchGit {
url = "https://github.com/AstroNvim/AstroNvim"; url = "https://github.com/AstroNvim/AstroNvim";
rev = "dad0bec1fef2833561d04ea446a544fbfde92539"; rev = "7f087b2ea45073be3386a29e805143f0a1f896e8";
}; };
astronvimUser = builtins.fetchGit { astronvimUser = builtins.fetchGit {
url = "https://foo:foo@github.com/morten-olsen/astrovim"; url = "https://foo:foo@github.com/morten-olsen/astrovim";

View File

@@ -39,6 +39,7 @@
".env".source = ./files/env; ".env".source = ./files/env;
".zshrc".source = ./files/zshrc; ".zshrc".source = ./files/zshrc;
".bashrc".source = ./files/bashrc; ".bashrc".source = ./files/bashrc;
# ".npmrc".source = ./files/npmrc;
".shellrc/rc.d" = { ".shellrc/rc.d" = {
source = ./files/shell/rc.d; source = ./files/shell/rc.d;
}; };

View File

@@ -0,0 +1 @@
prefix = ${HOME}/.npm-packages

View File

@@ -95,5 +95,7 @@ PRINT_CENTER 60 "
" "
fi fi
export PATH=~/.npm-global/bin:$PATH
export NODE_PATH=~/.npm-global/lib/node_modules
which wrk > /dev/null && eval `wrk tools bash` which wrk > /dev/null && eval `wrk tools bash`