42 lines
614 B
Nix
42 lines
614 B
Nix
|
inputs @ {
|
||
|
self,
|
||
|
nixpkgs,
|
||
|
...
|
||
|
}: {
|
||
|
colmena = {
|
||
|
meta = {
|
||
|
nixpkgs = import nixpkgs {
|
||
|
system = "x86_64-linux";
|
||
|
};
|
||
|
|
||
|
specialArgs = {
|
||
|
inherit inputs self;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
sue = {
|
||
|
deployment = {
|
||
|
allowLocalDeployment = true;
|
||
|
targetHost = null;
|
||
|
};
|
||
|
|
||
|
imports = [
|
||
|
(import ./machines).sue.module
|
||
|
./nixos
|
||
|
];
|
||
|
};
|
||
|
|
||
|
gamepc = {
|
||
|
deployment = {
|
||
|
targetHost = "gamepc";
|
||
|
targetUser = "root";
|
||
|
};
|
||
|
|
||
|
imports = [
|
||
|
(import ./machines).gamepc.module
|
||
|
./nixos
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|