This commit is contained in:
Joseph Hanson 2025-03-05 12:53:45 -06:00
parent efbf50f860
commit b90d0361fb
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o
3 changed files with 5 additions and 5 deletions

1
.envrc
View file

@ -1,3 +1,2 @@
use nix use nix
export SOPS_AGE_KEY_FILE="$(expand_path ./age.key)" export SOPS_AGE_KEY_FILE="$(expand_path ./age.key)"
export EDITOR="hx"

View file

@ -3,11 +3,9 @@
config, config,
lib, lib,
... ...
}: }: let
let
cfg = config.myHome.shell.git; cfg = config.myHome.shell.git;
in in {
{
options.myHome.shell.git = { options.myHome.shell.git = {
enable = lib.mkEnableOption "git"; enable = lib.mkEnableOption "git";
username = lib.mkOption { username = lib.mkOption {
@ -61,6 +59,8 @@ in
"*.decrypted.*" "*.decrypted.*"
# Python virtualenvs # Python virtualenvs
".venv" ".venv"
# Aider Chat
".aider*"
]; ];
}; };
}; };

View file

@ -53,6 +53,7 @@
unstable.zellij unstable.zellij
unstable.kitty unstable.kitty
unstable.nodePackages_latest.prettier # code formatter unstable.nodePackages_latest.prettier # code formatter
unstable.aider-chat
# flake imports # flake imports
inputs.nix-inspect.packages.${pkgs.system}.default inputs.nix-inspect.packages.${pkgs.system}.default