nix-infra/hosts/dinictis/default.nix
2024-05-04 15:03:05 +02:00

22 lines
558 B
Nix

{ ... }: {
imports = [
../../profiles/desktop
./hardware-configuration.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "dinictis"; # Define your hostname.
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
# Enable CUPS to print documents.
services.printing.enable = true;
# Enable sound.
# sound.enable = true;
hardware.pulseaudio.enable = true;
system.stateVersion = "23.11"; # Did you read the comment?
}