From 0bdcfc6638826eb73bd34a5c28104de8b59b5bce Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Mon, 30 Sep 2024 06:10:15 -0600 Subject: [PATCH] installer: remove duplicate systemPackages --- installer.nix | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/installer.nix b/installer.nix index 7041250..b19fff7 100644 --- a/installer.nix +++ b/installer.nix @@ -103,7 +103,16 @@ in boot.tmp.cleanOnBoot = true; environment = { - systemPackages = with pkgs; [ apg inetutils ]; + etc."configuration-template.nix" = { + source = ./install_template.nix; + mode = "0644"; + }; + systemPackages = with pkgs; [ + apg + inetutils + jq + jo + ]; interactiveShellInit = '' alias vi=nvim @@ -141,15 +150,7 @@ in openssh.authorizedKeys.keys = config.myconf.hwPubKeys; }; - environment = { - etc."configuration-template.nix" = { - source = ./install_template.nix; - mode = "0644"; - }; - systemPackages = [ - jq - ]; - }; + environment = { }; services = { openntpd.enable = true;