diff --git a/nix/configuration/configuration.nix b/nix/configuration/configuration.nix index 076fd14..063d2c1 100644 --- a/nix/configuration/configuration.nix +++ b/nix/configuration/configuration.nix @@ -128,9 +128,6 @@ } ]; - # Do not use default packages (nixos includes some defaults like nano) - environment.defaultPackages = lib.mkForce [ ]; - environment.systemPackages = with pkgs; [ wget mg @@ -207,6 +204,12 @@ # }) # ]; + # nixpkgs.overlays = [ + # (final: prev: { + # foot = throw "foo"; + # }) + # ]; + # Copy the NixOS configuration file and link it from the resulting system # (/run/current-system/configuration.nix). This is useful in case you # accidentally delete configuration.nix. diff --git a/nix/configuration/roles/reset/default.nix b/nix/configuration/roles/reset/default.nix index ad6ec4d..a5e5cb1 100644 --- a/nix/configuration/roles/reset/default.nix +++ b/nix/configuration/roles/reset/default.nix @@ -9,5 +9,8 @@ imports = [ ]; # Reset some defaults to start from a minimal more-arch-linux-like state. Think of this like a CSS reset sheet. - + config = { + # Do not use default packages (nixos includes some defaults like nano) + environment.defaultPackages = lib.mkForce [ ]; + }; }