aboutsummaryrefslogtreecommitdiffstats
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/nipsy/common/core/git.nix1
-rw-r--r--home/nipsy/common/optional/desktops/gtk.nix2
-rw-r--r--home/nipsy/common/optional/secrets.nix4
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";
};
};