diff options
Diffstat (limited to 'home')
| -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" + ] + } + + ''; +} |