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