nixfiles/hosts/homura/configuration.nix

25 lines
484 B
Nix
Raw Normal View History

2025-01-04 23:04:49 +03:00
{ modulesPath, abs, ... }:
2024-06-07 11:34:06 +03:00
{
imports = [
(modulesPath + "/profiles/minimal.nix")
(modulesPath + "/profiles/qemu-guest.nix")
./hardware-configuration.nix
];
boot.tmp.cleanOnBoot = true;
zramSwap.enable = true;
age.identityPaths = [
"/etc/ssh/agenix_key"
];
services.openssh.enable = true;
users.users.root.openssh.authorizedKeys.keyFiles = [
(abs "ssh/teidesu.pub")
];
system.stateVersion = "23.11";
2025-01-04 23:04:49 +03:00
networking.hostName = "homura";
2024-06-07 11:34:06 +03:00
}