diff options
| author | Fuwn <[email protected]> | 2024-10-23 03:32:19 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-23 03:32:19 -0700 |
| commit | 464eb008a9b03f3de39d0f9b4155660f447d0ae4 (patch) | |
| tree | 461f05c4abdcf3c0b4178df4bc5f7cdfff3dfe09 /home/ebisu/shared/rice/fastfetch.nix | |
| parent | home: split filesystem to shared (diff) | |
| download | nixos-config-464eb008a9b03f3de39d0f9b4155660f447d0ae4.tar.xz nixos-config-464eb008a9b03f3de39d0f9b4155660f447d0ae4.zip | |
home: move rice to shared
Diffstat (limited to 'home/ebisu/shared/rice/fastfetch.nix')
| -rw-r--r-- | home/ebisu/shared/rice/fastfetch.nix | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/home/ebisu/shared/rice/fastfetch.nix b/home/ebisu/shared/rice/fastfetch.nix new file mode 100644 index 0000000..cc27743 --- /dev/null +++ b/home/ebisu/shared/rice/fastfetch.nix @@ -0,0 +1,32 @@ +{ config, self, ... }: +{ + programs.fastfetch = { + enable = true; + + settings = { + logo = { + source = "${self}/home/${config.home.username}/shared/logo.png"; + width = 30; + padding.top = 0; + }; + + modules = [ + "title" + "break" + "os" + "kernel" + "uptime" + "packages" + "shell" + "de" + "wm" + "terminal" + "cpu" + "gpu" + "memory" + "break" + "colors" + ]; + }; + }; +} |