forest/hosts/amy/configuration.nix

13 lines
261 B
Nix
Raw Normal View History

2024-06-04 20:36:38 +00:00
{ ... }: {
imports = [
./hardware-configuration.nix
2024-06-04 22:35:36 +00:00
../common/generic.nix
2024-06-04 20:36:38 +00:00
];
zramSwap.enable = true;
networking.hostName = "amy";
networking.domain = "serv.ashhhleyyy.dev";
services.openssh.enable = true;
system.stateVersion = "23.11";
}