users(cassie): add lazygit

Changed files
+11
users
cassie
+1
users/cassie/home/dev/default.nix
···
imports = [
./git.nix
./ssh.nix
+
./lazygit.nix
./editors.nix
];
+10
users/cassie/home/dev/lazygit.nix
···
+
{
+
programs.lazygit = {
+
enable = true;
+
settings = {
+
# we use ssh keys as auth, and this is hyper annoying for when we want to do literally anything longer than 2 minutes.
+
# we think the concept of autofetching is kind of stupid anyways. i will fetch when i want to.
+
git.autoFetch = false;
+
};
+
};
+
}