16 lines
369 B
Nix
16 lines
369 B
Nix
{ ... }: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./modules/generic.nix
|
|
|
|
|
|
];
|
|
|
|
#boot.cleanTmpDir = true;
|
|
#zramSwap.enable = true;
|
|
networking.hostName = "mc6";
|
|
services.openssh.enable = true;
|
|
#users.users.root.openssh.authorizedKeys.keys = [
|
|
# "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFyGaBZIZYjiBhOFD2drvG316B9NUVSbMpTIhOCQur8P"
|
|
#];
|
|
}
|