From 43f55f9c9bb2158458f828dc00ffa983a93f864a Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Thu, 26 Oct 2023 22:09:41 +0800 Subject: [PATCH] profiles/dev: add submodule for funsies CLI apps --- modules/home-manager/profiles/dev.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/home-manager/profiles/dev.nix b/modules/home-manager/profiles/dev.nix index 44305df9..f8e5203f 100644 --- a/modules/home-manager/profiles/dev.nix +++ b/modules/home-manager/profiles/dev.nix @@ -12,6 +12,7 @@ in { extras.enable = lib.mkEnableOption "additional tools for development stuff"; shaders.enable = lib.mkEnableOption "tools for developing shaders"; servers.enable = lib.mkEnableOption "toolkit for managing servers from your home"; + funsies.enable = lib.mkEnableOption "installation of command-line applications for funsies"; }; config = lib.mkIf cfg.enable (lib.mkMerge [ @@ -194,5 +195,15 @@ in { whois # Doctor, are you not? ]; }) + + (lib.mkIf cfg.funsies.enable { + home.packages = with pkgs; [ + fastfetch # Fetch, fast! + asciiquarium-transparent # The closest thing to an actual aquarium (without the responsibility, of course). + cowsay # Cow say "WHUT?" + krabby # Kapture them Pikachus, bruh. + lavat # Where the lava at? + ]; + }) ]); }