NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chaos endures

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+1 -9
+1 -9
shared/1password.nix
··· 1 1 { config, lib, pkgs, ... }: 2 2 { 3 - # Enable the unfree 1Password packages 4 - nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ 5 - "1password-gui" 6 - "1password" 7 - ]; 8 - # Alternatively, you could also just allow all unfree packages 9 - # nixpkgs.config.allowUnfree = true; 10 - 11 3 programs._1password.enable = true; 12 4 programs._1password-gui = { 13 5 enable = true; 14 6 # Certain features, including CLI integration and system authentication support, 15 7 # require enabling PolKit integration on some desktop environments (e.g. Plasma). 16 - polkitPolicyOwners = [ "gildedguy", "ajhalili2006" ]; 8 + polkitPolicyOwners = [ "gildedguy" "ajhalili2006" ]; 17 9 }; 18 10 ... 19 11 }