mirror of
https://github.com/ItsDrike/nixdots
synced 2025-06-29 07:00:41 +00:00
Define individual hosts in hosts/
This commit is contained in:
parent
9f53049813
commit
f35c496905
2 changed files with 14 additions and 7 deletions
11
hosts/default.nix
Normal file
11
hosts/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{self, inputs, ...}: {
|
||||
flake.nixosConfigurations = let
|
||||
inherit (inputs.nixpkgs.lib) nixosSystem;
|
||||
specialArgs = {inherit inputs self;};
|
||||
in {
|
||||
vboxnix = nixosSystem {
|
||||
inherit specialArgs;
|
||||
modules = [ ../system ./vbox_nix ];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue