move things out of common into valefar

This commit is contained in:
waveringana 2025-05-31 21:39:42 -04:00
parent eabc37fb13
commit ca882853ff
Signed by: waveringana
SSH key fingerprint: SHA256:i9wBeOYE6M0IXu5FqJ2f5moBn/QvA2SNwME+b3DzZFU
3 changed files with 13 additions and 15 deletions

View file

@ -31,7 +31,19 @@
boot.supportedFilesystems = [ "zfs" ];
boot.kernelModules = [ "nct6775" "coretemp" ];
services.zfs.autoScrub.enable = true;
services.zfs.trim.enable = true;
environment.systemPackages = with pkgs; [
lm_sensors
code-server
];
virtualisation.docker = {
enable = true;
enableOnBoot = true;
package = pkgs.docker.override {
buildGoModule = pkgs.buildGo123Module;
};
};
}