diff options
| author | Fuwn <[email protected]> | 2024-10-03 02:35:16 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-03 02:35:16 -0700 |
| commit | 97bbd863c5e6102e36ffdd36a9aecd2882485106 (patch) | |
| tree | 676fcd635699fa4e84c6d067ae9ed2b0eb3cae09 /home/ebisu/core/rice/default.nix | |
| parent | hosts: use common wording instead of default (diff) | |
| download | nixos-config-97bbd863c5e6102e36ffdd36a9aecd2882485106.tar.xz nixos-config-97bbd863c5e6102e36ffdd36a9aecd2882485106.zip | |
home: moves some modules to core
Diffstat (limited to 'home/ebisu/core/rice/default.nix')
| -rw-r--r-- | home/ebisu/core/rice/default.nix | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/home/ebisu/core/rice/default.nix b/home/ebisu/core/rice/default.nix new file mode 100644 index 0000000..e9c70a1 --- /dev/null +++ b/home/ebisu/core/rice/default.nix @@ -0,0 +1,27 @@ +{ pkgs, ... }: +{ + imports = [ + ./bottom.nix + ./fastfetch.nix + ./glances.nix + ./gtk.nix + ]; + + programs = { + btop.enable = true; + pywal.enable = true; + }; + + home.packages = with pkgs; [ + cpufetch + iotop + nvtopPackages.nvidia + htop-vim + iftop + neofetch + microfetch + pfetch-rs + ipfetch + hayabusa + ]; +} |