Compare commits
2 commits
9178d539f0
...
fbef60be21
Author | SHA1 | Date | |
---|---|---|---|
|
fbef60be21 | ||
|
85101e1d85 |
|
@ -196,12 +196,6 @@ in
|
||||||
# profile sync daemon
|
# profile sync daemon
|
||||||
services.psd.enable = true;
|
services.psd.enable = true;
|
||||||
|
|
||||||
services.smartd =
|
|
||||||
{
|
|
||||||
enable = true;
|
|
||||||
devices = [{ device = "/dev/sda"; } { device = "/dev/sdb"; }];
|
|
||||||
};
|
|
||||||
|
|
||||||
fonts = {
|
fonts = {
|
||||||
fontDir.enable = true;
|
fontDir.enable = true;
|
||||||
fontconfig.enable = true;
|
fontconfig.enable = true;
|
||||||
|
|
|
@ -32,5 +32,10 @@
|
||||||
system.stateVersion = "23.11"; # Did you read the comment?
|
system.stateVersion = "23.11"; # Did you read the comment?
|
||||||
|
|
||||||
hardware.enableRedistributableFirmware = true;
|
hardware.enableRedistributableFirmware = true;
|
||||||
|
|
||||||
|
services.fwupd.enable = true;
|
||||||
|
|
||||||
|
# I do not need fingerprint reading
|
||||||
|
services.fprintd.enable = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -64,4 +64,9 @@ in
|
||||||
boot.tmp.useTmpfs = true;
|
boot.tmp.useTmpfs = true;
|
||||||
fileSystems."/tmp".fsType = "tmpfs";
|
fileSystems."/tmp".fsType = "tmpfs";
|
||||||
|
|
||||||
|
services.smartd =
|
||||||
|
{
|
||||||
|
enable = true;
|
||||||
|
devices = [{ device = "/dev/sda"; } { device = "/dev/sdb"; }];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue