10 lines
161 B
Nix
10 lines
161 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
../themes.nix
|
|
];
|
|
networking.hostName = "vm1";
|
|
}
|