aboutsummaryrefslogtreecommitdiff
path: root/modules/hosts/sachiel/flake-parts.nix
blob: 42d7551816f62658d903af01f97535029ee821a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ inputs, ... }:
{
  flake.nixosConfigurations."sachiel" = inputs.nixpkgs.lib.nixosSystem {
    specialArgs = { inherit inputs; };
    modules = [
      inputs.self.modules.nixos.sachiel
      inputs.self.modules.nixos.secrets
      inputs.self.modules.nixos.openssh
      inputs.self.modules.nixos.nginx
      inputs.self.modules.nixos.nextcloud
      inputs.self.modules.nixos.site
    ];
  };
}