This commit is contained in:
TheCrazyInsanity
2026-04-11 17:41:27 -04:00
parent 23058e5831
commit ded04993c8

View File

@@ -27,13 +27,13 @@
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = { fileSystems."/" = {
device = "/dev/disk/by-uuid/d9fee0ac-b35f-4d21-9461-3497af72d8bd"; device = "/dev/disk/by-label/NIXROOT";
fsType = "ext4"; fsType = "ext4";
}; };
boot.resumeDevice = "/dev/disk/by-uuid/d9fee0ac-b35f-4d21-9461-3497af72d8bd"; boot.resumeDevice = "/dev/disk/by-label/NIXSWAP";
fileSystems."/boot" = { fileSystems."/boot" = {
device = "/dev/disk/by-uuid/299C-03A0"; device = "/dev/disk/by-label/NIXBOOT";
fsType = "vfat"; fsType = "vfat";
options = [ options = [
"fmask=0022" "fmask=0022"
@@ -43,8 +43,7 @@
swapDevices = [ swapDevices = [
{ {
device = "/.swapfile"; device = "/dev/disk/by-label/NIXSWAP";
size = 16 * 1024;
} }
]; ];
@@ -58,7 +57,6 @@
# Suspend first # Suspend first
boot.kernelParams = [ boot.kernelParams = [
"mem_sleep_default=deep" "mem_sleep_default=deep"
"resume_offset=62050304"
]; ];
# Define time delay for hibernation # Define time delay for hibernation
@@ -68,8 +66,8 @@
#Facial recognition #Facial recognition
# security.pam.howdy.enable = true; # security.pam.howdy.enable = true;
services.howdy.enable = true; # services.howdy.enable = true;
services.linux-enable-ir-emitter.enable = true; # lmao # services.linux-enable-ir-emitter.enable = true; # lmao
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;