installer: remove duplicate systemPackages

This commit is contained in:
Aaron Bieber 2024-09-30 06:10:15 -06:00
parent fdb1f38109
commit 0bdcfc6638
No known key found for this signature in database

View File

@ -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;