13 lines
159 B
Nix
13 lines
159 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./hardware-configuration.nix
|
||
|
../../modules
|
||
|
];
|
||
|
|
||
|
networking.hostName = "nazuna";
|
||
|
|
||
|
system.stateVersion = "23.05";
|
||
|
}
|