From 1047642bdfb34fde5b3d62f1c2a0e5bcfc35dbd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Sun, 1 Feb 2026 00:19:56 +0100 Subject: [PATCH] installer: update list of packages available --- nix/configurations/installer.nix | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/nix/configurations/installer.nix b/nix/configurations/installer.nix index 3b9d56db..de59e0a6 100644 --- a/nix/configurations/installer.nix +++ b/nix/configurations/installer.nix @@ -1,9 +1,7 @@ -# # Note: # I could've import the wifi configuration and use it here, but I haven't # figured out an elegant (enough) way to do it while keeping my secrets # encrypted. -# let sources = import ../../npins; in @@ -37,8 +35,7 @@ in overlays = map import [ ../overlays/agenix.nix ../overlays/disko.nix - ../overlays/nur.nix - + ../overlays/npins.nix ../packages/overlay.nix ]; }; @@ -54,18 +51,20 @@ in isoImage.squashfsCompression = "zstd -Xcompression-level 3"; - environment.systemPackages = [ - pkgs.disko - pkgs.manage - pkgs.git - pkgs.pastebinit # for sharing cli output & debugging - pkgs.hdparm # to ATA secure wipe disks - pkgs.btop + environment.systemPackages = with pkgs; [ + agenix + npins + disko + stow + manage + + git + pastebinit # for sharing cli output & debugging + hdparm # to ATA secure wipe disks ]; networking.firewall.allowedTCPPorts = [ 8080 ]; # in case you wanna nc - programs.tmux.enable = true; users.users.nixos.shell = pkgs.fish; programs.fish.enable = true;