diff --git a/modules/system.nix b/modules/system.nix index 29e8442..5d9bae7 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -15,5 +15,6 @@ ../system/timezone.nix # ../system/touchpad.nix ../system/users.nix + ../system/tools.nix ]; } diff --git a/system/tools.nix b/system/tools.nix new file mode 100644 index 0000000..1ee7cb4 --- /dev/null +++ b/system/tools.nix @@ -0,0 +1,5 @@ +{pkgs, ...}: { + environment.systemPackages = with pkgs; [ + btop + ]; +}