Merge pull request #270 from DarkKirb/add-cargo-mommy

add cargo mommy
This commit is contained in:
Charlotte 🦝 Delenk 2023-11-19 19:34:25 +01:00 committed by GitHub
commit 623dcce33e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View file

@ -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 {}
);

View file

@ -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
'';
}