summaryrefslogtreecommitdiff
path: root/modules/hosts/mystra/configuration.nix
blob: fd34ca002e0dfb849435280d5290656e50a599e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  self,
  inputs,
  ...
}: {
  flake.nixosModules.mystraConfiguration = {
    pkgs,
    lib,
    ...
  }: {
    # import any other modules from here
    imports = [
      self.nixosModules.myMachineHardware
      self.nixosModules.niri
    ];

    # ...
  };
}