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.

128 lines
2.9 KiB
Nix

{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
../../common/tailscale.nix
../../common/secrets.nix
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.sandbox = "relaxed";
# Allow unfree
nixpkgs.config.allowUnfree = true;
# Nvidia drivers
services.xserver.videoDrivers = [ "nvidia" ];
hardware.opengl.enable = true;
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.stable;
hardware.bluetooth.enable = true;
services.blueman.enable = true;
# 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";
i18n.extraLocaleSettings = {
LC_ADDRESS = "en_US.UTF-8";
LC_IDENTIFICATION = "en_US.UTF-8";
LC_MEASUREMENT = "en_US.UTF-8";
LC_MONETARY = "en_US.UTF-8";
LC_NAME = "en_US.UTF-8";
LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8";
};
# Enable the X11 windowing system.
services.xserver.enable = true;
services.xserver.xrandrHeads = [
"HDMI-0"
"DP-0"
];
# Enable the LightDM and BSPWM
services.xserver.displayManager.lightdm.enable = true;
services.xserver.windowManager.bspwm.enable = true;
# Configure keymap in X11
services.xserver = {
layout = "us";
xkbVariant = "";
};
# Enable CUPS to print documents.
services.printing.enable = true;
# Enable sound with pipewire.
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
# use the example session manager (no others are packaged yet so this is enabled by default,
# no need to redefine it in your config for now)
#media-session.enable = true;
};
# Steam
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
};
users.users.rose = {
isNormalUser = true;
description = "Ashelyn Rose";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [
_1password-gui
firefox
zsh
discord
hyfetch
obsidian
alacritty
dmenu
picom
krita
];
};
# List packages installed in system profile. To search, run:
environment.systemPackages = with pkgs; [
vim
neovim
wget
htop
git
ntfs3g
element-desktop
bspwm
sxhkd
efibootmgr
];
services.openssh.enable = true;
networking.firewall.allowedTCPPorts = [ 22 80 ];
system.stateVersion = "22.11"; # Did you read the comment?
}