services/{nginx,postgres,synapse}: init

This commit is contained in:
LavaDesu 2022-02-13 21:06:56 +07:00
parent accf26c1ea
commit 3bea2397f5
Signed by: cilly
GPG key ID: 6500251E087653C9
5 changed files with 148 additions and 14 deletions

View file

@ -8,21 +8,27 @@
wpa_conf.file = ../../secrets/wpa_conf.age;
wg_caramel.file = ../../secrets/wg_caramel.age;
};
imports = with modules.system; [
inputs.home-manager-porcupine.nixosModule
imports =
(with modules.system; [
inputs.home-manager-porcupine.nixosModule
base
home-manager
input
nix-porcupine
security
wireguard
base
home-manager
input
nix-porcupine
security
wireguard
./filesystem.nix
./kernel.nix
./networking.nix
./packages.nix
./filesystem.nix
./kernel.nix
./networking.nix
./packages.nix
../../users/hana
];
../../users/hana
]) ++
(with modules.services; [
nginx
postgres
synapse
]);
}