{ config, pkgs, ... }: { imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix ../../common/tailscale.nix ]; nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.sandbox = "relaxed"; # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; networking.hostName = "hemera"; networking.networkmanager.enable = true; time.timeZone = "America/Denver"; i18n.defaultLocale = "en_US.UTF-8"; users.users.rose = { isNormalUser = true; extraGroups = [ "wheel" ]; packages = with pkgs; [ zsh ]; }; # List packages installed in system profile. To search, run: environment.systemPackages = with pkgs; [ vim neovim wget htop git ]; services.openssh.enable = true; networking.firewall.allowedTCPPorts = [ 22 80 ]; system.stateVersion = "22.11"; # Did you read the comment? }