diff --git a/config/home-manager/base.nix b/config/home-manager/base.nix index a5493c1f..9814d3b1 100644 --- a/config/home-manager/base.nix +++ b/config/home-manager/base.nix @@ -64,6 +64,7 @@ desktop: {pkgs, ...}: { icat = "${pkgs.kitty}/bin/kitty +kitten icat"; d = "${pkgs.kitty}/bin/kitty +kitten diff"; hg = "${pkgs.kitty}/bin/kitty +kitten hyperlinked_grep"; + cargo = "${pkgs.cargo-mommy}/bin/cargo-mommy"; } else {} ); diff --git a/config/programs/theming.nix b/config/programs/theming.nix index 21256524..551cbac0 100644 --- a/config/programs/theming.nix +++ b/config/programs/theming.nix @@ -604,4 +604,15 @@ in { ExecStart = "${pkgs.python3.withPackages (ps: with ps; [i3ipc])}/bin/python ${./transparency.py}"; }; }; + + programs.zsh.initExtra = + if withNSFW then '' + export CARGO_MOMMYS_MOODS=chill/thirshty/yikes + export CARGO_MOMMYS_LITTLE=racc/plush + export CARGO_MOMMYS_PARTS=shit/pee + export CARGO_MOMMYS_FUCKING="pet/toy/toilet/shitslut/septic tank" + '' else '' + export CARGO_MOMMYS_MOODS=chill + export CARGO_MOMMYS_LITTLE=racc/plush + ''; }