dotfiles/nixos/configuration.nix
2022-04-23 16:27:17 +00:00

232 lines
5.9 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
{
imports = [ # Include the results of the hardware scan.
/etc/nixos/hardware-configuration.nix
];
nixpkgs.config.allowUnfree = true;
nix.extraOptions = "experimental-features = nix-command flakes";
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# networking.hostName = "nixos"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Set your time zone, also used by redshift
services.localtime.enable = true;
services.avahi.enable = true;
services.geoclue2.enable = true;
location = { provider = "geoclue2"; };
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
# Per-interface useDHCP will be mandatory in the future, so this generated config
# replicates the default behaviour.
networking.useDHCP = false;
networking.interfaces.enp0s31f6.useDHCP = true;
networking.interfaces.wlp3s0.useDHCP = true;
# Enable the X11 windowing system.
services.xserver = {
enable = true;
windowManager = { i3 = { enable = true; }; };
# Enable touchpad support
libinput.enable = true;
# Disable mouse acceleration
libinput.mouse.accelProfile = "flat";
libinput.mouse.accelSpeed = "1.25";
# Keyboard responsiveness
autoRepeatDelay = 250;
autoRepeatInterval = 40;
# Configure keymap in X11
layout = "us";
xkbOptions = "eurosign:e,caps:swapescape";
# Login screen
displayManager = {
lightdm = {
enable = true;
# Make the login screen dark
greeters.gtk.theme.name = "Adwaita-dark";
# Put the login screen on the left monitor
greeters.gtk.extraConfig = ''
active-monitor=0
'';
};
setupCommands = ''
${pkgs.xorg.xrandr}/bin/xrandr --output DisplayPort-0 \
--mode 1920x1200 \
--pos 1920x0 \
--rotate left \
--output HDMI-0 \
--primary \
--mode 1920x1080 \
--pos 0x559 \
--rotate normal \
--output DVI-0 --off \
--output DVI-1 --off \
'';
};
};
hardware.acpilight.enable = true;
# Required for setting GTK theme (for preferred-color-scheme in browser)
services.dbus.packages = with pkgs; [ pkgs.dconf ];
# Mouse config
services.ratbagd.enable = true;
# Enable sound.
sound.enable = true;
hardware.pulseaudio.enable = false;
services.pipewire = {
enable = true;
# Sound card drivers
alsa = {
enable = true;
support32Bit = true;
};
# PulseAudio emulation
pulse.enable = true;
};
# Install fonts
fonts.fonts = with pkgs; [
victor-mono # Used for Vim and Terminal
nerdfonts
font-awesome # Icons (for i3)
siji # More icons for Polybar
];
fonts.fontconfig.defaultFonts.monospace = [ "Victor Mono" ];
# Gaming
hardware.opengl = {
enable = true;
driSupport32Bit = true;
};
hardware.steam-hardware.enable = true;
boot.kernel.sysctl = { "abi.vsyscall32" = 0; }; # League of Legends anti-cheat
# Replace sudo with doas
security = {
# Remove sudo
sudo.enable = false;
# Add doas
doas = {
enable = true;
# No password required
wheelNeedsPassword = false;
# Pass environment variables from user to root
# Also requires removing password here
extraRules = [{
groups = [ "wheel" ];
noPass = true;
keepEnv = true;
}];
};
};
# Define a user account. Don't forget to set a password with passwd.
users.users.noah = {
# Create a home directory for human user
isNormalUser = true;
# Automatically create a password to start
initialPassword = "changeme";
# Enable sudo privileges
extraGroups = [ "wheel" ];
# Use the fish shell
shell = pkgs.fish;
};
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
fish
vim
wget
curl
home-manager
xclip # Clipboard
pamixer # Audio control
dmenu
xlockmore
feh
xorg.xbacklight
playerctl
# i3blocks
polybar
# Mouse config
libratbag
piper
# Gaming
steam
lutris
amdvlk
wine
openssl # Required for League of Legends
dconf
];
environment.variables = { NIX_SKIP_KEYBASE_CHECKS = "1"; };
# Reduce blue light at night
services.redshift = {
enable = true;
brightness = {
day = "1.0";
night = "0.5";
};
};
# Login to Keybase in the background
services.keybase.enable = true;
services.kbfs = {
enable = true;
mountPoint = "/keybase";
};
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
# };
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "21.11"; # Did you read the comment?
}