Skip to content

Commit

Permalink
create a base NixOS system
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Sep 13, 2021
1 parent dc771b6 commit deee3b1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion flake.nix
Expand Up @@ -31,5 +31,12 @@
};
};

outputs = inputs: { };
outputs = inputs:
let overlays = [ ];
in {
nixosConfigurations.gitea = inputs.nixpkgs-release.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ({ ... }: { nixpkgs.overlays = overlays; }) ];
};
};
}

0 comments on commit deee3b1

Please sign in to comment.