lavaridge: added hashed password

This commit is contained in:
Aly Raffauf 2024-03-29 21:16:32 -04:00
parent 4976ac42fb
commit c0e6d57378

View file

@ -19,11 +19,17 @@
networking.hostName = "lavaridge"; # Define your hostname. networking.hostName = "lavaridge"; # Define your hostname.
services.fwupd.enable = true; services = {
fwupd.enable = true;
services.fprintd.package = pkgs.fprintd.overrideAttrs { fprintd.package = pkgs.fprintd.overrideAttrs {
mesonCheckFlags = [ "--no-suite" "fprintd:TestPamFprintd" ]; mesonCheckFlags = [ "--no-suite" "fprintd:TestPamFprintd" ];
}; };
};
systemConfig = {
plymouth.enable = true;
zramSwap.enable = true;
};
desktopConfig = { desktopConfig = {
enable = true; enable = true;
@ -37,8 +43,7 @@
homeLab.virtualization.enable = true; homeLab.virtualization.enable = true;
systemConfig.plymouth.enable = true; users.users.aly.hashedPassword = "$y$j9T$O9NgTk6iRfh3mxiRDvfdm1$BjvsAKYEMB3C28652FF15cj/i.3TgQAObQvR0rN1E6C";
systemConfig.zramSwap.enable = true;
system.stateVersion = "23.11"; # Did you read the comment? system.stateVersion = "23.11"; # Did you read the comment?
} }