diff options
| author | Mark Nipper <nipsy@bitgnome.net> | 2026-03-24 09:41:38 -0700 |
|---|---|---|
| committer | Mark Nipper <nipsy@bitgnome.net> | 2026-03-24 09:41:38 -0700 |
| commit | 4183bbd3451937c6c8ca02ca2664a3e91f773922 (patch) | |
| tree | ecdb19b891161339fe899e00588c7f11a6e06c4d /home | |
| parent | ec89695ae70d149fe7269ca0b811a50c9226535e (diff) | |
| download | nix-4183bbd3451937c6c8ca02ca2664a3e91f773922.tar nix-4183bbd3451937c6c8ca02ca2664a3e91f773922.tar.gz nix-4183bbd3451937c6c8ca02ca2664a3e91f773922.tar.bz2 nix-4183bbd3451937c6c8ca02ca2664a3e91f773922.tar.lz nix-4183bbd3451937c6c8ca02ca2664a3e91f773922.tar.xz nix-4183bbd3451937c6c8ca02ca2664a3e91f773922.tar.zst nix-4183bbd3451937c6c8ca02ca2664a3e91f773922.zip | |
Address home.stateVersion warnings
Diffstat (limited to 'home')
| -rw-r--r-- | home/nipsy/common/core/git.nix | 1 | ||||
| -rw-r--r-- | home/nipsy/common/optional/desktops/gtk.nix | 2 | ||||
| -rw-r--r-- | home/nipsy/common/optional/secrets.nix | 4 |
3 files changed, 4 insertions, 3 deletions
diff --git a/home/nipsy/common/core/git.nix b/home/nipsy/common/core/git.nix index 5ff118e..225ca73 100644 --- a/home/nipsy/common/core/git.nix +++ b/home/nipsy/common/core/git.nix @@ -8,5 +8,6 @@ name = "Mark Nipper"; }; }; + signing.format = null; }; } diff --git a/home/nipsy/common/optional/desktops/gtk.nix b/home/nipsy/common/optional/desktops/gtk.nix index b15683d..c31bae6 100644 --- a/home/nipsy/common/optional/desktops/gtk.nix +++ b/home/nipsy/common/optional/desktops/gtk.nix @@ -18,7 +18,7 @@ gtk4 = { colorScheme = "dark"; extraConfig.gtk-application-prefer-dark-theme = 1; - #theme = null; # https://github.com/nix-community/home-manager/issues/7113#issuecomment-3556166692 + theme = null; # https://github.com/nix-community/home-manager/issues/7113#issuecomment-3556166692 }; #iconTheme = { diff --git a/home/nipsy/common/optional/secrets.nix b/home/nipsy/common/optional/secrets.nix index 24ea99c..bba7752 100644 --- a/home/nipsy/common/optional/secrets.nix +++ b/home/nipsy/common/optional/secrets.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ pkgs, ... }: { programs.password-store = { enable = true; @@ -6,7 +6,7 @@ exts.pass-otp ]); settings = { - PASSWORD_STORE_DIR = "${config.home.homeDirectory}/.password-store"; + PASSWORD_STORE_DIR = "$XDG_DATA_HOME/.password-store"; }; }; |
