diff options
| author | Fuwn <[email protected]> | 2024-10-28 09:50:19 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-28 09:50:19 -0700 |
| commit | 44d38b896c443751df7818510b95bcc6a6b2dbc8 (patch) | |
| tree | 94463efb238b8087b9c26330de4141492a490c6f /modules/core/programs.nix | |
| parent | kioku: use primaryUser option from options (diff) | |
| download | nixos-config-44d38b896c443751df7818510b95bcc6a6b2dbc8.tar.xz nixos-config-44d38b896c443751df7818510b95bcc6a6b2dbc8.zip | |
core: move simple programs to core
Diffstat (limited to 'modules/core/programs.nix')
| -rw-r--r-- | modules/core/programs.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/core/programs.nix b/modules/core/programs.nix new file mode 100644 index 0000000..2b13a22 --- /dev/null +++ b/modules/core/programs.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: +{ + environment.systemPackages = with pkgs; [ + fastfetch + htop + ]; +} |