nix-infra/hosts/dinictis/default.nix

23 lines
558 B
Nix
Raw Normal View History

2024-05-04 11:01:27 +00:00
{ ... }: {
imports = [
../../profiles/desktop
2024-05-04 13:03:05 +00:00
./hardware-configuration.nix
2024-05-04 11:01:27 +00:00
];
2024-05-04 13:03:05 +00:00
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;
2024-05-04 11:01:27 +00:00
system.stateVersion = "23.11"; # Did you read the comment?
2024-05-04 13:03:05 +00:00
2024-05-04 11:01:27 +00:00
}