❄️ Dotfiles and NixOS configurations
0
fork

Configure Feed

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

nixosConfigurations/desktop/bitwarden: init

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>

+18 -1
+1
nixosConfigurations/andromeda/default.nix
··· 10 10 ../common/boot 11 11 ../common/desktop 12 12 ../common/desktop/anydesk.nix 13 + ../common/desktop/bitwarden.nix 13 14 ../common/desktop/chromium.nix 14 15 ../common/desktop/evolution.nix 15 16 ../common/desktop/firefox.nix
+15
nixosConfigurations/common/desktop/bitwarden.nix
··· 1 + { 2 + config, 3 + pkgs, 4 + ... 5 + }: { 6 + environment.systemPackages = [ 7 + pkgs.bitwarden-desktop 8 + ]; 9 + 10 + hm.home.sessionVariables."SSH_AUTH_SOCK" = "${config.hm.home.homeDirectory}"; 11 + 12 + hm.xdg.autostart.entries = [ 13 + "${pkgs.bitwarden-desktop}/share/applications/bitwarden.desktop" 14 + ]; 15 + }
+1
nixosConfigurations/common/desktop/default.nix
··· 37 37 hm = { 38 38 xdg = { 39 39 enable = true; 40 + autostart.enable = true; 40 41 userDirs = { 41 42 enable = true; 42 43 createDirectories = true;
-1
nixosConfigurations/common/gpg.nix
··· 1 1 {...}: { 2 2 programs.gnupg.agent = { 3 3 enable = true; 4 - enableSSHSupport = true; 5 4 settings = { 6 5 default-cache-ttl = 1209600; 7 6 default-cache-ttl-ssh = 1209600;
+1
nixosConfigurations/dyson/default.nix
··· 10 10 ../common/boot/plymouth.nix 11 11 ../common/desktop 12 12 ../common/desktop/anydesk.nix 13 + ../common/desktop/bitwarden.nix 13 14 ../common/desktop/chromium.nix 14 15 ../common/desktop/evolution.nix 15 16 ../common/desktop/firefox.nix