diff --git a/modules/applications/default.nix b/modules/applications/default.nix index a108890..d73a351 100644 --- a/modules/applications/default.nix +++ b/modules/applications/default.nix @@ -1 +1,3 @@ -{ ... }: { imports = [ ./misc.nix ./locale.nix ./git ./shells ./wakatime ]; } +{ ... }: { + imports = [ ./misc.nix ./locale.nix ./git ./shells ./wakatime ./memes.nix ]; +} diff --git a/modules/applications/memes.nix b/modules/applications/memes.nix new file mode 100644 index 0000000..d3db179 --- /dev/null +++ b/modules/applications/memes.nix @@ -0,0 +1,16 @@ +{ pkgs, ... }: { + home-manager.users.adrielus.home.packages = with pkgs; [ + # I love combining these together and generating random stuff lol + fortune + cowsay + lolcat + figlet + toilet + + # stuff to look at + doge + sl + asciiquarium + cmatrix + ]; +} diff --git a/modules/applications/misc.nix b/modules/applications/misc.nix index 64b5a8d..2e57bc3 100644 --- a/modules/applications/misc.nix +++ b/modules/applications/misc.nix @@ -17,11 +17,5 @@ google-chrome spectacle # take screenshots unstable.elementary-planner # project planner - - # for the memes - fortune - cowsay - lolcat - figlet ]; }