diff options
| author | Fuwn <[email protected]> | 2025-01-06 23:26:47 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-01-06 23:26:47 -0800 |
| commit | bd903ac749d9aa6bd7fa056b1c9e0cf3555a3665 (patch) | |
| tree | 843955af463b5369ce8484c6cd4e662f3d6ba899 /home/ebisu | |
| parent | scripts: macos system diff tool for etc (diff) | |
| download | nixos-config-bd903ac749d9aa6bd7fa056b1c9e0cf3555a3665.tar.xz nixos-config-bd903ac749d9aa6bd7fa056b1c9e0cf3555a3665.zip | |
nara: configure fastfetch
Diffstat (limited to 'home/ebisu')
| -rw-r--r-- | home/ebisu/nara/programs/default.nix | 1 | ||||
| -rw-r--r-- | home/ebisu/nara/programs/fastfetch.nix | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/home/ebisu/nara/programs/default.nix b/home/ebisu/nara/programs/default.nix index 061a522..f64bfb5 100644 --- a/home/ebisu/nara/programs/default.nix +++ b/home/ebisu/nara/programs/default.nix @@ -2,5 +2,6 @@ imports = [ ./analysis.nix ./development.nix + ./fastfetch.nix ]; } diff --git a/home/ebisu/nara/programs/fastfetch.nix b/home/ebisu/nara/programs/fastfetch.nix new file mode 100644 index 0000000..64b38f2 --- /dev/null +++ b/home/ebisu/nara/programs/fastfetch.nix @@ -0,0 +1,37 @@ +{ + home.file.".config/fastfetch/config.jsonc".text = '' + { + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", + "modules": [ + "title", + "break", + "os", + "host", + "kernel", + "uptime", + "packages", + "shell", + "de", + "wm", + "wmtheme", + "theme", + "icons", + "font", + "cursor", + "terminal", + "terminalfont", + "cpu", + "gpu", + "memory", + "swap", + "disk", + "localip", + "battery", + "poweradapter", + "break", + "colors" + ] + } + + ''; +} |