This commit is contained in:
2024-11-02 17:45:43 +01:00
parent d52099bbb9
commit 05c5cf81bf
20 changed files with 212 additions and 125 deletions

View File

@@ -0,0 +1,20 @@
{ pkgs, ... }:
{
# 1Password
programs._1password.enable = true;
programs._1password-gui = {
enable = true;
polkitPolicyOwners = [ "menno" ];
};
environment.etc = {
"1password/custom_allowed_browsers" = {
text = ''
firefox
brave
zen
'';
mode = "0755";
};
};
}

View File

@@ -1,5 +1,7 @@
{ ... }: {
{ ... }:
{
imports = [
./steam.nix
./1password.nix
];
}
}