dotfiles/nixos/configuration.nix

221 lines
5.9 KiB
Nix
Raw Normal View History

2021-08-09 12:19:21 +00:00
# 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, ... }:
{
2022-01-22 16:01:52 +00:00
imports = [ # Include the results of the hardware scan.
/etc/nixos/hardware-configuration.nix
];
2021-08-09 12:19:21 +00:00
2022-01-13 13:51:13 +00:00
nixpkgs.config.allowUnfree = true;
2022-01-23 00:16:37 +00:00
nix.extraOptions = "experimental-features = nix-command flakes";
2022-01-13 13:51:13 +00:00
2021-08-09 12:19:21 +00:00
# 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.
2022-01-23 16:37:47 +00:00
# Set your time zone, also used by redshift
services.localtime.enable = true;
2022-04-23 16:22:04 +00:00
services.avahi.enable = true;
2022-01-23 16:37:47 +00:00
services.geoclue2.enable = true;
location = { provider = "geoclue2"; };
2021-08-09 12:19:21 +00:00
# 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;
2022-01-17 05:18:49 +00:00
2022-04-23 16:22:04 +00:00
windowManager = { i3 = { enable = true; }; };
2022-01-17 05:18:49 +00:00
2022-01-23 04:41:53 +00:00
# Enable touchpad support
2022-01-17 05:18:49 +00:00
libinput.enable = true;
2021-08-09 12:19:21 +00:00
# Disable mouse acceleration
libinput.mouse.accelProfile = "flat";
2022-04-23 16:22:04 +00:00
libinput.mouse.accelSpeed = "1.25";
2022-01-17 05:18:49 +00:00
2022-01-23 04:41:53 +00:00
# Keyboard responsiveness
autoRepeatDelay = 250;
autoRepeatInterval = 40;
2022-01-17 05:18:49 +00:00
# Configure keymap in X11
layout = "us";
xkbOptions = "eurosign:e,caps:swapescape";
2022-01-23 04:41:53 +00:00
# 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 \
'';
};
2021-08-09 12:19:21 +00:00
};
2022-04-23 16:22:04 +00:00
hardware.acpilight.enable = true;
2022-01-23 04:41:53 +00:00
# Required for setting GTK theme (for preferred-color-scheme in browser)
2022-04-23 16:22:04 +00:00
services.dbus.packages = with pkgs; [ pkgs.dconf ];
2022-01-23 04:41:53 +00:00
2022-01-15 15:34:56 +00:00
# Mouse config
services.ratbagd.enable = true;
2021-08-09 12:19:21 +00:00
# Enable sound.
sound.enable = true;
hardware.pulseaudio.enable = true;
2022-01-15 15:14:12 +00:00
2021-11-06 19:16:53 +00:00
# Install fonts
2022-04-23 16:22:04 +00:00
fonts.fonts = with pkgs; [
victor-mono # Used for Vim and Terminal
2022-04-24 14:49:10 +00:00
nerdfonts # Used for icons in Vim
font-awesome # Icons for i3
# siji # More icons for Polybar
2022-04-23 16:22:04 +00:00
];
2022-01-22 16:01:52 +00:00
fonts.fontconfig.defaultFonts.monospace = [ "Victor Mono" ];
2021-11-06 19:16:53 +00:00
2022-01-17 05:18:49 +00:00
# Gaming
hardware.opengl = {
enable = true;
driSupport32Bit = true;
};
hardware.steam-hardware.enable = true;
2022-01-23 04:41:53 +00:00
boot.kernel.sysctl = { "abi.vsyscall32" = 0; }; # League of Legends anti-cheat
2021-08-09 12:19:21 +00:00
# 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 = {
2022-01-23 04:41:53 +00:00
# Create a home directory for human user
2021-08-09 12:19:21 +00:00
isNormalUser = true;
# Automatically create a password to start
initialPassword = "changeme";
# Enable sudo privileges
2022-04-23 17:15:14 +00:00
extraGroups = [
"wheel" # Sudo privileges
"i2c" # Access to external monitors
];
2021-08-09 12:19:21 +00:00
# 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
2022-01-23 04:41:53 +00:00
xclip # Clipboard
pamixer # Audio control
2022-04-24 14:49:10 +00:00
dmenu # Launcher
feh # Wallpaper
playerctl # Media control
polybarFull # Polybar + PulseAudio
2022-04-23 17:15:14 +00:00
ddcutil # Monitor brightness control
2022-01-17 05:18:49 +00:00
# Mouse config
2022-04-24 14:49:10 +00:00
libratbag # Mouse adjustments
piper # Mouse adjustments GUI
2022-01-17 05:18:49 +00:00
2022-01-23 04:41:53 +00:00
# Gaming
2022-01-17 05:18:49 +00:00
steam
2022-01-23 04:41:53 +00:00
lutris
amdvlk
wine
openssl # Required for League of Legends
2022-01-23 16:37:47 +00:00
dconf
2021-08-09 12:19:21 +00:00
];
2022-04-24 14:49:10 +00:00
# environment.variables = { NIX_SKIP_KEYBASE_CHECKS = "1"; };
2022-01-23 00:16:37 +00:00
# Reduce blue light at night
2022-01-23 16:37:47 +00:00
services.redshift = {
enable = true;
brightness = {
day = "1.0";
2022-04-26 00:34:08 +00:00
night = "1.0";
2022-01-23 16:37:47 +00:00
};
};
2022-01-23 00:16:37 +00:00
2022-04-23 17:15:14 +00:00
# Detect monitors (brightness)
hardware.i2c.enable = true;
2022-01-23 04:41:53 +00:00
# Login to Keybase in the background
2022-01-23 00:16:37 +00:00
services.keybase.enable = true;
2022-04-26 00:34:08 +00:00
services.kbfs.enable = true;
2022-01-17 05:18:49 +00:00
2021-08-09 12:19:21 +00:00
# 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).
2022-01-15 15:14:12 +00:00
system.stateVersion = "21.11"; # Did you read the comment?
2021-08-09 12:19:21 +00:00
}