From 6f2256920dbb4077a6be66994bf8b0f594c9fe1c Mon Sep 17 00:00:00 2001 From: TrudeEH Date: Mon, 26 Jan 2026 15:15:34 +0000 Subject: [PATCH] Fix Keepass settings --- AGENTS.md | 9 +++++++++ nixos/configuration.nix | 1 + nixos/home.nix | 4 ++-- 3 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 AGENTS.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 00000000..8aa9e002 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,9 @@ +Use idiomatic nix. + +Before making changes, read the appropriate entries of the following manuals: +- man configuration.nix +- man home-configuration.nix + +Do not read the entire manual at once, instead search only for what you need. + +After editing nix configurations, always run `nix flake check nixos/` to check for errors. diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 76b0c3c4..c15a3b5c 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -76,6 +76,7 @@ }; home-manager = { + backupFileExtension = "~"; extraSpecialArgs = { inherit inputs; }; users = { "trude" = import ./home.nix; diff --git a/nixos/home.nix b/nixos/home.nix index 74830cda..1342b25f 100644 --- a/nixos/home.nix +++ b/nixos/home.nix @@ -79,7 +79,7 @@ home.sessionVariables = { EDITOR = "gnome-text-editor"; - SSH_AUTH_SOCK = "$XDG_RUNTIME_DIR/ssh-agent"; + SSH_AUTH_SOCK = "$XDG_RUNTIME_DIR/gcr/.ssh"; }; programs.git = { @@ -107,7 +107,7 @@ }; }; }; - + programs.bash = { enable = true; shellAliases = {