13 lines
302 B
Nix
13 lines
302 B
Nix
{inputs, ...}: let
|
|
inherit (inputs) nixpkgs;
|
|
inherit (nixpkgs.lib) nixosSystem;
|
|
in {
|
|
flake.nixosConfigurations.atreus = nixosSystem {
|
|
specialArgs = {inherit inputs;};
|
|
modules = [
|
|
{networking.hostName = "atreus";}
|
|
../nixos/common/flake-support.nix
|
|
../nixos
|
|
];
|
|
};
|
|
}
|