From e6c35604bb6183fda8d7add49a885a3c09922a7e Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Date: Wed, 5 Apr 2023 16:59:09 +0200 Subject: [PATCH] Add some tools and use relaxed for build sandbox --- configuration.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 4e1e341..e00c8df 100644 --- a/configuration.nix +++ b/configuration.nix @@ -8,10 +8,10 @@ ./fs.nix ./gitlab-runner.nix ./net.nix + ./overlays.nix ./slurm.nix ./ssh.nix ./users.nix - ./overlays.nix ]; systemd.services."serial-getty@ttyS0" = { @@ -25,9 +25,11 @@ environment.systemPackages = with pkgs; [ vim wget git htop tmux pciutils tcpdump ripgrep nix-index nixos-option + ipmitool freeipmi ethtool lm_sensors ]; nix.settings.experimental-features = [ "nix-command" "flakes" ]; + nix.settings.sandbox = "relaxed"; nix.gc.automatic = true; programs.zsh.enable = true;