Move Crow to m.2

This commit is contained in:
KnightArtorias 2026-06-09 11:23:51 -04:00
parent ef873ecd03
commit 521e61c1c0
3 changed files with 7 additions and 11 deletions

View file

@ -81,6 +81,7 @@
touchpad = {
tap = {};
natural-scroll = {};
scroll-factor = 0.25;
};
focus-follows-mouse = {};

View file

@ -26,7 +26,7 @@
shellAliases = {
ll = "ls -la";
update = "sudo nix flake update --flake $NIX_FLAKE_PATH && sudo nixos-rebuild switch --upgrade-all --flake $NIX_FLAKE_PATH#$HOSTNAME";
update = "sudo nix flake update --flake $NIX_FLAKE_PATH && sudo nixos-rebuild switch --flake $NIX_FLAKE_PATH#$HOSTNAME";
rebuild = "sudo nixos-rebuild switch --flake $NIX_FLAKE_PATH#$HOSTNAME";
};
};

View file

@ -4,29 +4,24 @@
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "sd_mod" ];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/310d77f1-247d-4db9-9db0-be6b70483bd8";
fsType = "ext4";
};
fileSystems."/mnt/steam" =
{ device = "/dev/disk/by-uuid/f800bb63-5798-4faa-b2d2-50073215e391";
{ device = "/dev/disk/by-uuid/612d2419-8b0c-40dd-89d3-5bde0c2daaac";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/9F36-9DE8";
{ device = "/dev/disk/by-uuid/C6A2-0230";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
options = [ "fmask=0077" "dmask=0077" ];
};
swapDevices =
[ { device = "/dev/disk/by-uuid/d7fbd2b2-c943-457b-afc1-ad355d30a5c2"; }
[ { device = "/dev/disk/by-uuid/9ac86a08-f161-4208-9348-66f6493881bf"; }
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";