diff options
Diffstat (limited to '')
-rw-r--r-- | hosts/common/core/default.nix | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/hosts/common/core/default.nix b/hosts/common/core/default.nix index 515cbd9..5e27580 100644 --- a/hosts/common/core/default.nix +++ b/hosts/common/core/default.nix @@ -1,4 +1,4 @@ -{ config, inputs, outputs, pkgs, ... }: { +{ inputs, outputs, pkgs, ... }: { imports = [ ./locale.nix ./nix.nix @@ -9,15 +9,6 @@ documentation.dev.enable = true; documentation.man.enable = true; - # generate a handy list of all currently installed packages with versions at /etc/current-system-packages - environment.etc."current-system-packages".text = - let - packages = builtins.map (p: "${p.name}") config.environment.systemPackages; - sortedUnique = builtins.sort builtins.lessThan (pkgs.lib.lists.unique packages); - formatted = builtins.concatStringsSep "\n" sortedUnique; - in - formatted; - environment.systemPackages = with pkgs; [ acl age |