mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
12 lines
338 B
Nix
12 lines
338 B
Nix
{
|
|
inputs.nixpkgs.url = "nixpkgs/nixos-unstable";
|
|
inputs.stable2009.url = "nixpkgs/nixos-20.09";
|
|
|
|
outputs = { self, nixpkgs, stable2009 }: {
|
|
nixosModule = { ... }: {
|
|
imports = [ ./. ];
|
|
config = { sconfig.flakes.enable = true; };
|
|
};
|
|
nixosConfigurations = import ./hosts { inherit nixpkgs stable2009; };
|
|
};
|
|
}
|