diff options
| -rw-r--r-- | hosts/c-pc/home.nix | 2 | ||||
| -rw-r--r-- | snowfall/modules/home/apps/default.nix | 1 | ||||
| -rw-r--r-- | snowfall/modules/home/suites/misc/default.nix | 1 |
3 files changed, 2 insertions, 2 deletions
diff --git a/hosts/c-pc/home.nix b/hosts/c-pc/home.nix index 3ccd6df..7fc00d6 100644 --- a/hosts/c-pc/home.nix +++ b/hosts/c-pc/home.nix @@ -22,8 +22,6 @@ }; home.packages = with pkgs; [ - pfetch - mkvtoolnix ]; diff --git a/snowfall/modules/home/apps/default.nix b/snowfall/modules/home/apps/default.nix index 57b184f..d38e26a 100644 --- a/snowfall/modules/home/apps/default.nix +++ b/snowfall/modules/home/apps/default.nix @@ -38,5 +38,6 @@ with lib; with lib.${namespace}; { (mkSimpleApp "irssi" { persist = [ ".irssi" ]; }) + (mkSimpleApp "pfetch" {}) ]; } diff --git a/snowfall/modules/home/suites/misc/default.nix b/snowfall/modules/home/suites/misc/default.nix index 99d4e10..5ffaba5 100644 --- a/snowfall/modules/home/suites/misc/default.nix +++ b/snowfall/modules/home/suites/misc/default.nix @@ -11,6 +11,7 @@ in { cxl = { apps = { fastfetch.enable = true; + pfetch.enable = true; }; }; }; |