diff options
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/common.nix | 7 | ||||
-rw-r--r-- | nixos/lindy.nix | 7 |
2 files changed, 12 insertions, 2 deletions
diff --git a/nixos/common.nix b/nixos/common.nix index 739228c..841516c 100644 --- a/nixos/common.nix +++ b/nixos/common.nix @@ -99,6 +99,7 @@ in pass openssl htop + i7z powertop iotop jnettop @@ -110,7 +111,11 @@ in wget gcc gnumake - rustup + clang + rustc + rustfmt + cargo + clippy rclone restic borgbackup diff --git a/nixos/lindy.nix b/nixos/lindy.nix index bcc662e..d7672c9 100644 --- a/nixos/lindy.nix +++ b/nixos/lindy.nix @@ -21,7 +21,6 @@ boot.zfs.extraPools = [ "Zonz" ]; services.zfs.autoScrub.enable = true; services.zfs.autoScrub.pools = [ "Zonz" ]; - environment.systemPackages = [ pkgs.zfs ]; # Use Grub boot.loader.grub.enable = true; @@ -83,6 +82,12 @@ Kogami UUID=61534c91-df18-4c71-9244-54e677f5d4fa /root/kogami_key services.xserver.videoDrivers = [ "nvidia" ]; hardware.opengl.enable = true; + # Docker + virtualisation.docker.enable = true; + users.users.lx.extraGroups = [ "docker" ]; + + environment.systemPackages = with pkgs; [ zfs docker-compose ]; + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand"; hardware.cpu.intel.updateMicrocode = |