10 lines
156 B
Nix
10 lines
156 B
Nix
|
{ pkgs, lib, modulesPath, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
(modulesPath + "/installer/cd-dvd/installation-cd-base.nix")
|
||
|
];
|
||
|
|
||
|
networking.hostname = "isowo";
|
||
|
}
|