You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
991 B
Nix

{ 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?
}