Compare commits

..

2 Commits

Author SHA1 Message Date
TheCrazyInsanity
c696e8702f i lowkirkenuinely don t know tbh #sigma 2026-04-11 19:32:45 -04:00
TheCrazyInsanity
ded04993c8 h 2026-04-11 17:41:27 -04:00

View File

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