Files
nixos/machines/workstation/default.nix
2026-02-06 08:40:28 +01:00

19 lines
335 B
Nix

{ ... }:
{
imports = [
./hardware.nix
./services.nix
./virtualisation.nix
./networking.nix
];
networking.hostName = "workstation"; # Define your hostname.
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
system.stateVersion = "24.11"; # Did you read the comment?
}