mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-08 12:47:00 +01:00
19 lines
335 B
Nix
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?
|
|
}
|