diff options
| author | Fuwn <[email protected]> | 2024-06-25 18:36:11 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-25 18:36:11 -0700 |
| commit | 6b8636e2d979532d98b10a4a8393165ba2d5864c (patch) | |
| tree | 1f18f8256a77922880b67db682495d9cb24fe2cf /meta/rice | |
| parent | . (diff) | |
| download | nixos-config-6b8636e2d979532d98b10a4a8393165ba2d5864c.tar.xz nixos-config-6b8636e2d979532d98b10a4a8393165ba2d5864c.zip | |
hi
Diffstat (limited to 'meta/rice')
| -rw-r--r-- | meta/rice/bottom/default.nix | 3 | ||||
| -rw-r--r-- | meta/rice/btop/default.nix | 3 | ||||
| -rw-r--r-- | meta/rice/cpufetch/default.nix | 5 | ||||
| -rw-r--r-- | meta/rice/default.nix | 9 | ||||
| -rw-r--r-- | meta/rice/fastfetch/default.nix | 34 | ||||
| -rw-r--r-- | meta/rice/iotop/default.nix | 5 |
6 files changed, 59 insertions, 0 deletions
diff --git a/meta/rice/bottom/default.nix b/meta/rice/bottom/default.nix new file mode 100644 index 0000000..9248e3d --- /dev/null +++ b/meta/rice/bottom/default.nix @@ -0,0 +1,3 @@ +{ pkgs, ... }: { + programs.bottom.enable = true; +} diff --git a/meta/rice/btop/default.nix b/meta/rice/btop/default.nix new file mode 100644 index 0000000..d483420 --- /dev/null +++ b/meta/rice/btop/default.nix @@ -0,0 +1,3 @@ +{ pkgs, ... }: { + programs.btop.enable = true; +} diff --git a/meta/rice/cpufetch/default.nix b/meta/rice/cpufetch/default.nix new file mode 100644 index 0000000..b045b4a --- /dev/null +++ b/meta/rice/cpufetch/default.nix @@ -0,0 +1,5 @@ +{ pkgs, ... }: { + home.packages = with pkgs; [ + cpufetch + ]; +} diff --git a/meta/rice/default.nix b/meta/rice/default.nix new file mode 100644 index 0000000..56e4bc1 --- /dev/null +++ b/meta/rice/default.nix @@ -0,0 +1,9 @@ +_: { + imports = [ + ./bottom + ./btop + ./cpufetch + ./fastfetch + ./iotop + ]; +} diff --git a/meta/rice/fastfetch/default.nix b/meta/rice/fastfetch/default.nix new file mode 100644 index 0000000..8ae6284 --- /dev/null +++ b/meta/rice/fastfetch/default.nix @@ -0,0 +1,34 @@ +{ pkgs, ... }: { + programs.fastfetch = { + enable = true; + + settings = { + logo = { + source = "~/Downloads/91363-1550240807.png"; + width = 30; + + padding = { + top = 0; + }; + }; + + modules = [ + "title" + "break" + "os" + "kernel" + "uptime" + "packages" + "shell" + "de" + "wm" + "terminal" + "cpu" + "gpu" + "memory" + "break" + "colors" + ]; + }; + }; +} diff --git a/meta/rice/iotop/default.nix b/meta/rice/iotop/default.nix new file mode 100644 index 0000000..a219adc --- /dev/null +++ b/meta/rice/iotop/default.nix @@ -0,0 +1,5 @@ +{ pkgs, ... }: { + home.packages = with pkgs; [ + iotop + ]; +} |