2023-09-23 13:35:35 +02: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,
|
|
|
|
|
lib,
|
|
|
|
|
pkgs,
|
|
|
|
|
...
|
|
|
|
|
}: {
|
|
|
|
|
imports = [
|
|
|
|
|
# Include the results of the hardware scan.
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
./home.nix
|
|
|
|
|
./secrets.nix
|
|
|
|
|
];
|
|
|
|
|
|
2023-09-29 17:28:16 +02:00
|
|
|
|
hardware.amdgpu.opencl = false;
|
|
|
|
|
|
2023-09-23 13:35:35 +02:00
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages;
|
|
|
|
|
|
|
|
|
|
# Use the systemd-boot EFI boot loader.
|
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
|
2023-11-27 17:47:25 +01:00
|
|
|
|
# boot.initrd.systemd.enable = true;
|
|
|
|
|
# boot.plymouth.enable = true;
|
|
|
|
|
# boot.kernelParams = ["quiet"];
|
2023-11-23 12:01:03 +01:00
|
|
|
|
|
2023-09-23 13:35:35 +02:00
|
|
|
|
boot.initrd.secrets = {
|
|
|
|
|
"/crypto_keyfile.bin" = null;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
boot.tmp.useTmpfs = true;
|
|
|
|
|
|
|
|
|
|
services.btrfs = {
|
|
|
|
|
autoScrub = {
|
|
|
|
|
enable = true;
|
|
|
|
|
fileSystems = ["/"];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
networking.hostName = "hephaestus"; # Define your hostname.
|
|
|
|
|
networking.domain = "alarsyo.net";
|
|
|
|
|
|
|
|
|
|
networking.networkmanager.enable = true;
|
|
|
|
|
|
|
|
|
|
# Set your time zone.
|
|
|
|
|
time.timeZone = "Europe/Paris";
|
|
|
|
|
|
|
|
|
|
# List services that you want to enable:
|
|
|
|
|
my.services = {
|
2023-12-13 17:43:53 +01:00
|
|
|
|
tailscale = {
|
|
|
|
|
enable = true;
|
|
|
|
|
useRoutingFeatures = "client";
|
|
|
|
|
};
|
|
|
|
|
|
2023-09-23 13:35:35 +02:00
|
|
|
|
pipewire.enable = true;
|
2023-09-26 17:39:47 +02:00
|
|
|
|
|
|
|
|
|
restic-backup = {
|
|
|
|
|
enable = true;
|
|
|
|
|
repo = "b2:hephaestus-backup";
|
|
|
|
|
passwordFile = config.age.secrets."restic-backup/hephaestus-password".path;
|
|
|
|
|
environmentFile = config.age.secrets."restic-backup/hephaestus-credentials".path;
|
|
|
|
|
|
|
|
|
|
timerConfig = {
|
|
|
|
|
OnCalendar = "*-*-* 13:00:00"; # laptop only gets used during the day
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
paths = [
|
|
|
|
|
"/home/alarsyo"
|
|
|
|
|
];
|
|
|
|
|
exclude = [
|
|
|
|
|
"/home/alarsyo/Downloads"
|
|
|
|
|
|
|
|
|
|
# Rust builds using half my storage capacity
|
|
|
|
|
"/home/alarsyo/**/target"
|
|
|
|
|
"/home/alarsyo/work/rust/build"
|
|
|
|
|
|
|
|
|
|
# don't backup nixpkgs
|
|
|
|
|
"/home/alarsyo/work/nixpkgs"
|
|
|
|
|
|
|
|
|
|
"/home/alarsyo/go"
|
|
|
|
|
|
|
|
|
|
# C build crap
|
|
|
|
|
"*.a"
|
|
|
|
|
"*.o"
|
|
|
|
|
"*.so"
|
|
|
|
|
|
|
|
|
|
".direnv"
|
|
|
|
|
|
|
|
|
|
# test vms
|
|
|
|
|
"*.qcow2"
|
|
|
|
|
|
|
|
|
|
# secrets stay offline
|
|
|
|
|
"/home/alarsyo/**/secrets"
|
|
|
|
|
|
|
|
|
|
# ignore all dotfiles as .config and .cache can become quite big
|
|
|
|
|
"/home/alarsyo/.*"
|
|
|
|
|
];
|
|
|
|
|
};
|
2023-09-23 13:35:35 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
virtualisation.docker.enable = true;
|
|
|
|
|
virtualisation.libvirtd.enable = true;
|
|
|
|
|
programs.dconf.enable = true;
|
|
|
|
|
|
|
|
|
|
services = {
|
|
|
|
|
tlp = {
|
2023-11-27 17:47:01 +01:00
|
|
|
|
enable = true;
|
2023-09-23 13:35:35 +02:00
|
|
|
|
settings = {
|
|
|
|
|
START_CHARGE_THRESH_BAT0 = 70;
|
|
|
|
|
STOP_CHARGE_THRESH_BAT0 = 80;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
fwupd.enable = true;
|
|
|
|
|
openssh.enable = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
my.gui.enable = true;
|
|
|
|
|
my.displayManager.sddm.enable = lib.mkForce false;
|
|
|
|
|
|
|
|
|
|
hardware.bluetooth = {
|
|
|
|
|
enable = true;
|
|
|
|
|
powerOnBoot = false;
|
|
|
|
|
settings.General.Experimental = true;
|
|
|
|
|
};
|
|
|
|
|
|
2023-09-25 15:50:30 +02:00
|
|
|
|
# Select internationalisation properties.
|
2023-09-23 13:35:35 +02:00
|
|
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
|
|
|
|
|
|
|
|
i18n.extraLocaleSettings = {
|
|
|
|
|
LC_ADDRESS = "fr_FR.UTF-8";
|
|
|
|
|
LC_IDENTIFICATION = "fr_FR.UTF-8";
|
|
|
|
|
LC_MEASUREMENT = "fr_FR.UTF-8";
|
|
|
|
|
LC_MONETARY = "fr_FR.UTF-8";
|
|
|
|
|
LC_NAME = "fr_FR.UTF-8";
|
|
|
|
|
LC_PAPER = "fr_FR.UTF-8";
|
|
|
|
|
LC_TELEPHONE = "fr_FR.UTF-8";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Enable the X11 windowing system.
|
|
|
|
|
services.xserver.enable = true;
|
|
|
|
|
|
|
|
|
|
# Enable the KDE Plasma Desktop Environment.
|
|
|
|
|
services.xserver.displayManager.sddm.enable = true;
|
|
|
|
|
services.xserver.desktopManager.plasma5.enable = true;
|
2023-11-27 17:47:01 +01:00
|
|
|
|
services.power-profiles-daemon.enable = false;
|
2023-09-23 13:35:35 +02:00
|
|
|
|
|
2024-02-06 16:13:37 +01:00
|
|
|
|
services.autorandr = {
|
|
|
|
|
enable = true;
|
|
|
|
|
profiles = {
|
|
|
|
|
default = {
|
|
|
|
|
fingerprint = {
|
|
|
|
|
"eDP-1" = "00ffffffffffff0030e42c0600000000001c0104a51f117802aa95955e598e271b5054000000010101010101010101010101010101012e3680a070381f403020350035ae1000001ab62c80f4703816403020350035ae1000001a000000fe004c4720446973706c61790a2020000000fe004c503134305746412d535044340018";
|
|
|
|
|
};
|
|
|
|
|
config = {
|
|
|
|
|
"eDP-1" = {
|
|
|
|
|
enable = true;
|
|
|
|
|
crtc = 0;
|
|
|
|
|
primary = true;
|
|
|
|
|
position = "0x0";
|
|
|
|
|
mode = "1920x1080";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
dock = {
|
|
|
|
|
fingerprint = {
|
|
|
|
|
"eDP-1" = "00ffffffffffff0030e42c0600000000001c0104a51f117802aa95955e598e271b5054000000010101010101010101010101010101012e3680a070381f403020350035ae1000001ab62c80f4703816403020350035ae1000001a000000fe004c4720446973706c61790a2020000000fe004c503134305746412d535044340018";
|
2024-02-19 16:47:58 +01:00
|
|
|
|
"DP-4" = "00ffffffffffff0026cd4161fb060000021e0104a5351e783aee35a656529d280b5054b74f00714f818081c081009500b300d1c0d1cf023a801871382d40582c45000f282100001e000000fd00374c1e5512000a202020202020000000ff0031313634383030323031373837000000fc00504c32343933480a202020202001c9020318f14b9002030411121305141f012309070183010000023a801871382d40582c45000f282100001e8c0ad08a20e02d10103e96000f2821000018011d007251d01e206e2855000f282100001e8c0ad090204031200c4055000f28210000182a4480a070382740302035000f282100001a00000000000000000000000000a1";
|
|
|
|
|
"DP-5" = "00ffffffffffff0026cd4561990000001f1c0104a5351e783ace65a657519f270f5054b30c00714f818081c081009500b300d1c00101023a801871382d40582c45000f282100001e000000fd00374c1e5311000a202020202020000000ff0031313634384238383030313533000000fc00504c32343933480a202020202001d3020318f14b9002030411121305141f012309070183010000023a801871382d40582c45000f282100001e8c0ad08a20e02d10103e96000f2821000018011d007251d01e206e2855000f282100001e8c0ad090204031200c4055000f28210000180000000000000000000000000000000000000000000000000000000000000035";
|
2024-02-06 16:13:37 +01:00
|
|
|
|
};
|
|
|
|
|
config = {
|
|
|
|
|
"eDP-1" = {
|
|
|
|
|
enable = true;
|
|
|
|
|
primary = false;
|
2024-02-19 16:47:58 +01:00
|
|
|
|
position = "3000x840";
|
2024-02-06 16:13:37 +01:00
|
|
|
|
mode = "1920x1080";
|
|
|
|
|
};
|
|
|
|
|
"DP-4" = {
|
|
|
|
|
enable = true;
|
2024-02-13 12:37:25 +01:00
|
|
|
|
primary = true;
|
2024-02-19 16:47:58 +01:00
|
|
|
|
position = "0x420";
|
|
|
|
|
mode = "1920x1080";
|
|
|
|
|
};
|
|
|
|
|
"DP-5" = {
|
|
|
|
|
enable = true;
|
|
|
|
|
primary = false;
|
2024-02-13 12:37:25 +01:00
|
|
|
|
position = "1920x0";
|
2024-02-19 16:47:58 +01:00
|
|
|
|
mode = "1920x1080";
|
|
|
|
|
rotate = "left";
|
2024-02-06 16:13:37 +01:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
2024-02-06 17:07:24 +01:00
|
|
|
|
dock-lid-closed = {
|
|
|
|
|
fingerprint = {
|
2024-02-19 16:47:58 +01:00
|
|
|
|
"DP-4" = "00ffffffffffff0026cd4161fb060000021e0104a5351e783aee35a656529d280b5054b74f00714f818081c081009500b300d1c0d1cf023a801871382d40582c45000f282100001e000000fd00374c1e5512000a202020202020000000ff0031313634383030323031373837000000fc00504c32343933480a202020202001c9020318f14b9002030411121305141f012309070183010000023a801871382d40582c45000f282100001e8c0ad08a20e02d10103e96000f2821000018011d007251d01e206e2855000f282100001e8c0ad090204031200c4055000f28210000182a4480a070382740302035000f282100001a00000000000000000000000000a1";
|
|
|
|
|
"DP-5" = "00ffffffffffff0026cd4561990000001f1c0104a5351e783ace65a657519f270f5054b30c00714f818081c081009500b300d1c00101023a801871382d40582c45000f282100001e000000fd00374c1e5311000a202020202020000000ff0031313634384238383030313533000000fc00504c32343933480a202020202001d3020318f14b9002030411121305141f012309070183010000023a801871382d40582c45000f282100001e8c0ad08a20e02d10103e96000f2821000018011d007251d01e206e2855000f282100001e8c0ad090204031200c4055000f28210000180000000000000000000000000000000000000000000000000000000000000035";
|
2024-02-06 17:07:24 +01:00
|
|
|
|
};
|
|
|
|
|
config = {
|
|
|
|
|
"DP-4" = {
|
|
|
|
|
enable = true;
|
2024-02-13 12:37:25 +01:00
|
|
|
|
primary = true;
|
2024-02-19 16:47:58 +01:00
|
|
|
|
position = "0x420";
|
|
|
|
|
mode = "1920x1080";
|
|
|
|
|
};
|
|
|
|
|
"DP-5" = {
|
|
|
|
|
enable = true;
|
|
|
|
|
primary = false;
|
|
|
|
|
position = "1920x0";
|
|
|
|
|
mode = "1920x1080";
|
|
|
|
|
rotate = "left";
|
2024-02-06 17:07:24 +01:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
2024-02-06 16:13:37 +01:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2024-02-06 17:07:41 +01:00
|
|
|
|
systemd.services.autorandr-lid-listener = {
|
|
|
|
|
wantedBy = ["multi-user.target"];
|
|
|
|
|
description = "Listening for lid events to invoke autorandr";
|
|
|
|
|
|
|
|
|
|
serviceConfig = {
|
|
|
|
|
Type = "simple";
|
|
|
|
|
ExecStart = let
|
|
|
|
|
stdbufExe = lib.getExe' pkgs.coreutils "stdbuf";
|
|
|
|
|
libinputExe = lib.getExe' pkgs.libinput "libinput";
|
|
|
|
|
grepExe = lib.getExe pkgs.gnugrep;
|
|
|
|
|
autorandrExe = lib.getExe pkgs.autorandr;
|
|
|
|
|
in
|
|
|
|
|
pkgs.writeShellScript "lid-listener.sh" ''
|
|
|
|
|
${stdbufExe} -oL ${libinputExe} debug-events |
|
|
|
|
|
${grepExe} -E --line-buffered '^[[:space:]-]+event[0-9]+[[:space:]]+SWITCH_TOGGLE[[:space:]]' |
|
|
|
|
|
while read line; do
|
|
|
|
|
${pkgs.systemd}/bin/systemctl start --no-block autorandr.service
|
|
|
|
|
done
|
|
|
|
|
'';
|
|
|
|
|
Restart = "always";
|
|
|
|
|
RestartSec = "30";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2023-09-23 13:35:35 +02:00
|
|
|
|
# Configure console keymap
|
|
|
|
|
console.keyMap = "us";
|
2023-09-24 17:19:49 +02:00
|
|
|
|
|
|
|
|
|
programs.light.enable = true;
|
2023-09-23 13:35:35 +02:00
|
|
|
|
}
|