# One-time: copy to server /etc/nixos/configuration.nix then nixos-rebuild switch (enables flakes for daemon). { config, lib, pkgs, ... }: { imports = [ ./hardware-configuration.nix ]; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; networking.hostName = "sunken-ship"; time.timeZone = "Europe/Copenhagen"; nix.settings.experimental-features = [ "nix-command" "flakes" ]; users.users.danny = { isNormalUser = true; extraGroups = [ "wheel" ]; }; services.openssh.enable = true; }