summaryrefslogtreecommitdiffstats
path: root/profiles/server.nix
blob: ec4b1c6e5cb157bc35d9c405e7dd43d5fe350611 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
inputs:

{ modulesPath, ... }:

{
  imports = [
    (modulesPath + "/profiles/headless.nix")
    (modulesPath + "/profiles/hardened.nix")

    inputs.self.nixosModules.usecases.server.default
  ];

}