Add helios configuration

This commit is contained in:
2023-05-05 20:23:24 +01:00
parent f70486ac41
commit 3e12af7daa
5 changed files with 163 additions and 1 deletions

View File

@ -50,6 +50,15 @@
];
specialArgs = { inherit lib inputs; };
};
helios = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
inputs.home-manager.nixosModules.home-manager
(import ./modules)
./hosts/helios
];
specialArgs = { inherit lib inputs; };
};
};
};
}