20 lines
441 B
Nix
20 lines
441 B
Nix
|
{ inputs, outputs }:
|
||
|
let
|
||
|
inherit (inputs) nixpkgs;
|
||
|
inherit (inputs.nixpkgs) lib;
|
||
|
in {
|
||
|
meta = {
|
||
|
nixpkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||
|
specialArgs = { inherit inputs; };
|
||
|
};
|
||
|
|
||
|
sakotop = { names, nodes, ... }: {
|
||
|
deployment = {
|
||
|
allowLocalDeployment = true;
|
||
|
targetHost = null;
|
||
|
};
|
||
|
specialArgs = { inherit inputs outputs; };
|
||
|
imports = [ ./default.nix ./hosts/sakotop/configuration.nix ];
|
||
|
};
|
||
|
}
|