14 lines
251 B
Nix
14 lines
251 B
Nix
|
{ ... }: {
|
||
|
imports = [
|
||
|
./hardware-configuration.nix
|
||
|
];
|
||
|
|
||
|
cherrykitten.graphical = false;
|
||
|
|
||
|
boot.tmp.cleanOnBoot = true;
|
||
|
zramSwap.enable = true;
|
||
|
networking.hostName = "ocelot";
|
||
|
networking.domain = "";
|
||
|
system.stateVersion = "23.11";
|
||
|
}
|