Files
nixos/machines/workstation/default.nix

17 lines
339 B
Nix

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