Encrypting Syncthing password
This commit is contained in:
parent
a104557d4e
commit
f5e2037cc2
|
@ -1,2 +1,3 @@
|
|||
# Encrypt Mopidy config as it contains Spotify credentials
|
||||
system/shared/services/mopidy.nix filter=git-crypt diff=git-crypt
|
||||
system/shared/services/syncthing.nix filter=git-crypt diff=git-crypt
|
||||
|
|
|
@ -28,6 +28,8 @@
|
|||
environment.systemPackages = with pkgs; [
|
||||
cifs-utils # To mount Storage Box
|
||||
git
|
||||
git-crypt
|
||||
gnupg
|
||||
vim
|
||||
];
|
||||
}
|
||||
|
|
|
@ -21,12 +21,6 @@
|
|||
openFirewall = true;
|
||||
};
|
||||
|
||||
services.pcscd.enable = true;
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
pinentryFlavor = "curses";
|
||||
};
|
||||
|
||||
# Use the systemd-boot EFI boot loader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
|
Binary file not shown.
|
@ -33,6 +33,12 @@
|
|||
];
|
||||
};
|
||||
|
||||
services.pcscd.enable = true;
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
pinentryFlavor = "curses";
|
||||
};
|
||||
|
||||
nix = {
|
||||
extraOptions = "experimental-features = nix-command flakes";
|
||||
package = pkgs.nixFlakes;
|
||||
|
|
Loading…
Reference in New Issue