Evie Litherland-Smith
6ed405d7e2
commit68df6945a2
Author: Evie Litherland-Smith <evie@xenia.me.uk> Date: Mon Jun 17 08:44:52 2024 +0100 Remove gnome-themes-extra and adwaita-qt commitfa7baa7812
Author: Evie Litherland-Smith <evie@xenia.me.uk> Date: Mon Jun 17 08:37:45 2024 +0100 Export more rc2 settings for Vanguard commit4a101ee77d
Author: Evie Litherland-Smith <evie@xenia.me.uk> Date: Mon Jun 17 08:27:46 2024 +0100 Set pinentry package to Qt variant when using plasma6 Add extra theme/icon packages to installed packages whilst configuring commit923adabb28
Author: Evie Litherland-Smith <evie@xenia.me.uk> Date: Mon Jun 17 08:23:48 2024 +0100 Add rc2 export for Vanguard as well Remove some sway config from Vanguard.nix Remove home-manager kdeconnect service, incompatible with system/plasma6 enabled service Install pinentry-all by default to ensure compatibility commitdfc1ac3f74
Author: Evie Litherland-Smith <evie@xenia.me.uk> Date: Mon Jun 17 07:35:31 2024 +0100 Add plasma6 export using rc2nix commiteb8bb86c17
Author: Evie Litherland-Smith <evie@xenia.me.uk> Date: Sun Jun 16 20:44:38 2024 +0100 Disable/remove more options not needed for plasma6 commit51171ddb06
Author: Evie Litherland-Smith <evie@xenia.me.uk> Date: Sun Jun 16 19:31:15 2024 +0100 Re-enable alacritty decorations, disable translucency for alacritty and emacs commit99364c041b
Author: Evie Litherland-Smith <evie@xenia.me.uk> Date: Sun Jun 16 12:42:26 2024 +0100 Disable sway and related modules
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
xdg.configFile."pass-git-helper/git-pass-mapping.ini".source =
|
|
./git-pass-mapping.ini;
|
|
programs = {
|
|
gpg.enable = true;
|
|
password-store = {
|
|
enable = true;
|
|
package =
|
|
pkgs.pass-nodmenu.withExtensions
|
|
(exts: with exts; [pass-update pass-import]); # pass-audit
|
|
settings = {
|
|
PASSWORD_STORE_DIR = "${config.home.homeDirectory}/.password-store";
|
|
PASSWORD_STORE_ENABLE_EXTENSIONS = "true";
|
|
};
|
|
};
|
|
git.extraConfig.credential = {
|
|
helper = "${pkgs.pass-git-helper}/bin/pass-git-helper";
|
|
};
|
|
};
|
|
services = {
|
|
gpg-agent = rec {
|
|
enable = true;
|
|
maxCacheTtl = 86400;
|
|
defaultCacheTtl = maxCacheTtl;
|
|
defaultCacheTtlSsh = maxCacheTtl;
|
|
pinentryPackage = lib.mkDefault pkgs.pinentry-all;
|
|
extraConfig = ''
|
|
no-allow-external-cache
|
|
'';
|
|
};
|
|
git-sync.repositories.password-store = {
|
|
path = "${config.home.homeDirectory}/.password-store";
|
|
uri = "git+https://git.xenia.me.uk/xenia/pass.git";
|
|
};
|
|
};
|
|
}
|