diff options
author | Alex Auvolat <alex@adnab.me> | 2023-01-26 16:28:27 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-01-26 16:28:27 +0100 |
commit | ddca8ee9b4c7677f9d67fae7cc235d305ca7dd7a (patch) | |
tree | 09f55e0250662d5183c1237f1980bc5644fa3663 | |
parent | 59056a6030da24413673c43f46bac0dc3699744a (diff) | |
download | user-config-ddca8ee9b4c7677f9d67fae7cc235d305ca7dd7a.tar.gz user-config-ddca8ee9b4c7677f9d67fae7cc235d305ca7dd7a.zip |
packages
-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 = |