all repos — nixfiles @ b4eb1c302a046ef01e46b56854772199ad75ab77

System and user configuration, managed by nix and home-manager

base: only install process misc utilities on linux
Alan Pearce alan@alanpearce.eu
Sun, 28 Apr 2024 12:02:33 +0200
commit

b4eb1c302a046ef01e46b56854772199ad75ab77

parent

0cbdeb522332029ee7670312f34297fff781c079

1 files changed, 2 insertions(+), 1 deletions(-)

jump to
M system/settings/programs/base.nixsystem/settings/programs/base.nix
@@ -7,8 +7,9 @@ home-manager     lzma
     lzop
     zstd
+  ] ++ (lib.optionals (stdenv.isLinux) [
     psmisc
-  ];
+  ]);
   nix.settings = {
     substituters = [
       "https://nix-community.cachix.org"