From 7f75a2528931bbe9d11983d8324f3cff3a4ce34b Mon Sep 17 00:00:00 2001 From: Paul Hartman Date: Thu, 10 Oct 2024 04:35:14 -0500 Subject: [PATCH] Working on cleaning up nas configuration --- hosts/nas/configuration.nix | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/hosts/nas/configuration.nix b/hosts/nas/configuration.nix index cfe8087..a6d2c4e 100644 --- a/hosts/nas/configuration.nix +++ b/hosts/nas/configuration.nix @@ -6,7 +6,6 @@ { nix = { - # settings.auto-optimize-store = true; nixPath = [ "nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixos" "nixos-config=/home/paul/.nixos/hosts/nas/configuration.nix" @@ -111,10 +110,6 @@ }; }; }; - - # Configure network proxy if necessary - # networking.proxy.default = "http://user:password@proxy:port/"; - # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; # Enable networking networking.networkmanager.enable = true; @@ -157,12 +152,9 @@ # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ - # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. - # wget - micro + micro docker-compose htop - intel-gpu-tools iotop lm_sensors ncdu @@ -176,16 +168,24 @@ # Some programs need SUID wrappers, can be configured further or are # started in user sessions. - programs.mtr.enable = true; - programs.gnupg.agent = { - enable = true; - enableSSHSupport = true; - }; - programs.git = { - enable = true; -# userName = "Paul Hartman"; -# userEmail = "paul.hartman@astaluk.com"; + programs = { + mtr.enable = true; + gnupg.agent = { + enable = true; + enableSSHSupport = true; + }; + git.enable = true; }; +# programs.mtr.enable = true; +# programs.gnupg.agent = { +# enable = true; +# enableSSHSupport = true; +# }; +# programs.git = { +# enable = true; +# # userName = "Paul Hartman"; +# # userEmail = "paul.hartman@astaluk.com"; +# }; # List services that you want to enable: services = { openssh.enable = true;