2023-12-01 11:29:39 +00:00
|
|
|
{
|
|
|
|
description = "NixOS Machine Configurations by manuth";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = { self, nixpkgs }:
|
|
|
|
let
|
2023-12-01 11:51:55 +00:00
|
|
|
system = import ./lib/system.nix {
|
|
|
|
inherit nixpkgs;
|
|
|
|
};
|
2023-12-01 11:29:39 +00:00
|
|
|
in {
|
2023-12-01 14:15:40 +00:00
|
|
|
nixosConfigurations.nixos = system "nixos" {};
|
2023-12-01 11:29:39 +00:00
|
|
|
};
|
|
|
|
}
|