NixOS/profiles/homeserver.nix

26 lines
434 B
Nix
Raw Normal View History

2024-06-12 18:09:56 +07:00
{ ... }:
{
imports = [
../options
];
profile = {
hostname = "homeserver";
user = {
name = "homeserver";
fullName = "Homeserver";
};
system.stateVersion = "24.05";
grub.enable = false;
# There is no GUI on the server. No need for audio.
audio.enable = false;
security.sudo.wheelNeedsPassword = false;
podman = {
enable = true;
};
openssh.enable = true;
};
}