diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-08 20:04:53 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:53 -0700 |
| commit | 200b5dc1fbee56838235bfd2c3d98540f1cc9bd3 (patch) | |
| tree | db5c8a9f0e7d9a1f0f4c2fad9ac53544504aee0d /snowfall/modules | |
| parent | c414f0d50c59e7fbe7eda5a6ef93bea75057f1a2 (diff) | |
migration: misc apps
Diffstat (limited to 'snowfall/modules')
| -rw-r--r-- | snowfall/modules/home/apps/default.nix | 5 | ||||
| -rw-r--r-- | snowfall/modules/home/suites/misc/default.nix | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/snowfall/modules/home/apps/default.nix b/snowfall/modules/home/apps/default.nix index d38e26a..b284132 100644 --- a/snowfall/modules/home/apps/default.nix +++ b/snowfall/modules/home/apps/default.nix @@ -39,5 +39,10 @@ with lib; with lib.${namespace}; { persist = [ ".irssi" ]; }) (mkSimpleApp "pfetch" {}) + (mkSimpleApp "cmatrix" {}) + (mkSimpleApp "asciiquarium" {}) + (mkSimpleApp "pipes" {}) + (mkSimpleApp "cowsay" {}) + (mkSimpleApp "figlet" {}) ]; } diff --git a/snowfall/modules/home/suites/misc/default.nix b/snowfall/modules/home/suites/misc/default.nix index 5ffaba5..61cfbed 100644 --- a/snowfall/modules/home/suites/misc/default.nix +++ b/snowfall/modules/home/suites/misc/default.nix @@ -12,6 +12,11 @@ in { apps = { fastfetch.enable = true; pfetch.enable = true; + cmatrix.enable = true; + asciiquarium.enable = true; + pipes.enable = true; + cowsay.enable = true; + figlet.enable = true; }; }; }; |