This commit is contained in:
Don Harper 2024-06-29 18:40:38 -05:00
parent e8044912c0
commit 611cd25502
3 changed files with 54 additions and 0 deletions

11
hosts/vm/default.nix Normal file
View file

@ -0,0 +1,11 @@
{ inputs, outputs, lib, config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
../server
../themes.nix
];
networking.hostName = "vm";
}