Compare commits

..

2 Commits

Author SHA1 Message Date
coolneng 9eb6a1ca70
Change wireguard secret permissions 2022-06-08 16:44:07 +02:00
coolneng 078b18a404
Enable fish shell package completion 2022-06-08 16:43:53 +02:00
1 changed files with 8 additions and 1 deletions

View File

@ -102,7 +102,11 @@ in {
# Specify secrets # Specify secrets
age = { age = {
secrets.wireguard.file = secrets/wireguard.age; secrets.wireguard = {
file = secrets/wireguard.age;
owner = "systemd-network";
group = "systemd-network";
};
secrets.syncthing.file = secrets/syncthing.age; secrets.syncthing.file = secrets/syncthing.age;
secrets.samba-ugent.file = secrets/samba-ugent.age; secrets.samba-ugent.file = secrets/samba-ugent.age;
secrets.msmtp.file = secrets/msmtp.age; secrets.msmtp.file = secrets/msmtp.age;
@ -162,6 +166,9 @@ in {
}; };
}; };
# Enable fish package completion
programs.fish.enable = true;
# Import other configuration modules # Import other configuration modules
imports = [ imports = [
./modules/hardware-configuration.nix ./modules/hardware-configuration.nix