Skip to content

Commit

Permalink
home.non-nixos: install coreutils and procps for all darwin machines
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerschtli committed Jan 29, 2024
1 parent 654a34b commit 315e0cb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
5 changes: 4 additions & 1 deletion home/base/non-nixos.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ let
mkIf
mkMerge
mkOption
optionals
types
;

Expand Down Expand Up @@ -44,7 +45,9 @@ in
custom.misc.darwin-keyboard-layout.enable = config.custom.base.general.darwin;

home = {
packages = mkIf cfg.installNix [ config.nix.package ];
packages = optionals cfg.installNix [ config.nix.package ]
++ optionals config.custom.base.general.darwin [ pkgs.coreutils pkgs.procps ];

sessionVariables.NIX_PATH = concatStringsSep ":" commonConfig.nix.nixPath;
};

Expand Down
1 change: 0 additions & 1 deletion hosts/R2026/home-tobiashapp.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@

packages = with pkgs; [
awscli2
coreutils
nixpkgs-fmt
nodejs
];
Expand Down
1 change: 0 additions & 1 deletion hosts/bwpm-FP2CYXKY2V/home-tobiashapp.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@

packages = with pkgs; [
asciidoctor
coreutils
nixpkgs-fmt
nodejs
];
Expand Down

0 comments on commit 315e0cb

Please sign in to comment.