Compare commits
No commits in common. "be0a1be47d45db1430fcc663cf89b3dd1ce0399c" and "4cc40675102de9a21cc22c373bff8c239ceb6afa" have entirely different histories.
be0a1be47d
...
4cc4067510
@ -45,6 +45,7 @@ in
|
|||||||
];
|
];
|
||||||
|
|
||||||
time.timeZone = "Europe/Rome";
|
time.timeZone = "Europe/Rome";
|
||||||
|
# system.stateVersion = "21.11";
|
||||||
users.users.giulio.openssh.authorizedKeys.keys = pubkeys;
|
users.users.giulio.openssh.authorizedKeys.keys = pubkeys;
|
||||||
boot = {
|
boot = {
|
||||||
initrd = {
|
initrd = {
|
||||||
@ -59,7 +60,10 @@ in
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.fwupd.enable = true;
|
||||||
|
boot = {
|
||||||
kernelParams = [
|
kernelParams = [
|
||||||
"ip=${network.architect-lan}::10.0.0.1:255.255.255.0::${network.wan-if}:off"
|
"ip=${network.architect-lan}::10.0.0.1:255.255.255.0::${network.wan-if}:off"
|
||||||
"nvme_core.default_ps_max_latency_us=5500"
|
"nvme_core.default_ps_max_latency_us=5500"
|
||||||
@ -126,15 +130,17 @@ in
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
hardware.opengl = {
|
environment.systemPackages = with pkgs; [ cachix ];
|
||||||
enable = true;
|
|
||||||
extraPackages = with pkgs; [ vaapiVdpau ];
|
hardware = {
|
||||||
driSupport = true;
|
opengl.enable = true;
|
||||||
|
opengl.extraPackages = with pkgs; [ vaapiVdpau ];
|
||||||
|
opengl.driSupport = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.das_watchdog.enable = true;
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
fwupd.enable = true;
|
|
||||||
das_watchdog.enable = true;
|
|
||||||
zfs.autoScrub.enable = true;
|
zfs.autoScrub.enable = true;
|
||||||
xserver.videoDrivers = [ "nvidia" ];
|
xserver.videoDrivers = [ "nvidia" ];
|
||||||
openssh = {
|
openssh = {
|
||||||
@ -148,8 +154,5 @@ in
|
|||||||
smartd.enable = true;
|
smartd.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
environment = {
|
environment.variables = { LIBVA_DRIVER_NAME = "vdpau"; };
|
||||||
variables = { LIBVA_DRIVER_NAME = "vdpau"; };
|
|
||||||
systemPackages = with pkgs; [ cachix ];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user