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