panacea/configuration.nix

186 lines
4.3 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, inputs, ... }:
2020-04-16 19:14:10 +02:00
2021-11-16 16:12:01 +01:00
with pkgs;
{
2020-04-16 19:14:10 +02:00
# Kernel configuration
boot = {
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
2022-05-23 02:01:56 +02:00
kernelParams = [
2022-12-15 13:54:04 +01:00
"zfs.zfs_arc_max=2147483648"
2022-05-23 02:01:56 +02:00
"zfs.zfs_arc_meta_limit_percent=90"
"workqueue.power_efficient=y"
2022-08-25 12:53:29 +02:00
"ipv6.disable=1"
2023-01-19 12:52:49 +01:00
"ahci.mobile_lpm_policy=3"
"nmi_watchdog=0"
2022-05-23 02:01:56 +02:00
];
2023-03-17 00:18:08 +01:00
kernelModules = [ "i915" ];
2023-01-19 12:52:49 +01:00
blacklistedKernelModules = [ "btusb" "bluetooth" ];
2020-04-16 19:14:10 +02:00
supportedFilesystems = [ "zfs" ];
zfs = {
requestEncryptionCredentials = true;
enableUnstable = true;
};
2020-04-16 19:14:10 +02:00
};
# Intel CPU tweaks
2023-01-04 12:34:29 +01:00
hardware = {
enableRedistributableFirmware = true;
cpu.intel.updateMicrocode = true;
};
2021-05-05 00:40:14 +02:00
services.fwupd.enable = true;
2020-04-16 19:14:10 +02:00
hardware.opengl.extraPackages = [ vaapiIntel vaapiVdpau libvdpau-va-gl ];
2020-04-16 19:14:10 +02:00
# Bootloader configuration
boot.loader = {
2020-05-08 21:53:52 +02:00
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
2020-04-16 19:14:10 +02:00
configurationLimit = 50;
editor = false;
2020-04-16 19:14:10 +02:00
};
timeout = 3;
2020-04-16 19:14:10 +02:00
};
2021-08-08 20:56:16 +02:00
# Run Nix garbage collector and enable flakes
2020-04-16 19:14:10 +02:00
nix = {
2022-01-30 22:06:17 +01:00
settings = {
auto-optimise-store = true;
trusted-users = [ "root" "coolneng" ];
};
2020-04-16 19:14:10 +02:00
gc = {
automatic = true;
2020-09-03 02:36:54 +02:00
options = "--delete-older-than 7d";
2021-03-23 00:14:00 +01:00
dates = "Tue 23:00";
2020-04-16 19:14:10 +02:00
};
extraOptions = ''
keep-outputs = true
2020-09-30 12:12:00 +02:00
keep-derivations = true
2020-04-16 19:14:10 +02:00
gc-keep-outputs = true
2021-08-08 20:56:16 +02:00
experimental-features = nix-command flakes
2020-04-16 19:14:10 +02:00
'';
2021-11-16 16:12:01 +01:00
package = nixUnstable;
2020-04-16 19:14:10 +02:00
};
# Clean tmp directory on shutdown
boot.tmp.cleanOnBoot = true;
2020-04-16 19:14:10 +02:00
# Keep logs for a week
services.journald.extraConfig = "MaxRetentionSec=1week";
2020-08-31 00:43:09 +02:00
# Allow propietary software and build packages with Pulseaudio support
nixpkgs.config = {
allowUnfree = true;
pulseaudio = true;
};
2020-04-22 22:13:03 +02:00
# Scrub zpool monthly
services.zfs.autoScrub = {
enable = true;
interval = "monthly";
};
# Set timezone and synchronize NTP
time.timeZone = "Europe/Brussels";
services.chrony.enable = true;
2020-04-22 22:13:03 +02:00
2020-05-08 21:53:52 +02:00
# NixOS version
2022-08-27 22:00:56 +02:00
system.stateVersion = "22.05";
2020-05-08 21:53:52 +02:00
# Create coolneng user
users.users.coolneng = {
isNormalUser = true;
home = "/home/coolneng";
2020-05-14 03:04:30 +02:00
extraGroups = [ "wheel" "video" "audio" "libvirtd" "lp" ];
2021-11-16 16:12:01 +01:00
shell = fish;
};
2021-08-09 22:59:07 +02:00
# Set shell for root user
2021-11-16 16:12:01 +01:00
users.users.root.shell = fish;
2021-08-09 02:10:51 +02:00
# Specify secrets
2021-08-13 10:48:58 +02:00
age = {
2022-06-08 16:44:07 +02:00
secrets.wireguard = {
file = secrets/wireguard.age;
owner = "systemd-network";
group = "systemd-network";
};
2021-08-13 11:00:13 +02:00
secrets.syncthing.file = secrets/syncthing.age;
2022-01-27 00:29:15 +01:00
secrets.samba-ugent.file = secrets/samba-ugent.age;
2022-05-02 05:47:52 +02:00
secrets.msmtp.file = secrets/msmtp.age;
identityPaths = [ "/etc/ssh/id_ed25519" ];
2021-08-13 10:48:58 +02:00
};
2021-08-09 02:10:51 +02:00
# Use same version of nixpkgs for nix-shell
nix.nixPath = let path = toString ./.;
in [ "nixpkgs=${inputs.nixpkgs}" "nixos-config=${path}/configuration.nix" ];
2022-05-02 00:14:06 +02:00
# Auto-upgrade the system
system.autoUpgrade = {
enable = true;
2022-05-02 00:14:06 +02:00
dates = "22:30";
flake = "/home/coolneng/Projects/panacea";
flags = [
"--update-input"
"agenix"
"--update-input"
"nixpkgs"
"--commit-lock-file"
];
};
# Add required dependencies to the auto-upgrade service
systemd.services.nixos-upgrade.path = [
coreutils
gnutar
xz.bin
gzip
gitMinimal
config.nix.package.out
config.programs.ssh.package
git-crypt
git-lfs
inputs.agenix.packages.x86_64-linux.default
];
2022-05-02 00:14:06 +02:00
2022-05-16 14:38:45 +02:00
# Configure git for auto-upgrade
programs.git = {
enable = true;
config = {
2022-05-23 01:58:28 +02:00
user.name = "coolneng";
2022-05-16 14:38:45 +02:00
user.email = "akasroua@gmail.com";
safe.directory = "/home/coolneng/Projects/panacea";
};
};
2022-06-08 16:43:53 +02:00
# Enable fish package completion
programs.fish.enable = true;
# Enable nix-index
programs.command-not-found.enable = false;
programs.nix-index = {
enable = true;
enableFishIntegration = true;
};
# Import other configuration modules
imports = [
./modules/hardware-configuration.nix
2020-04-24 04:08:44 +02:00
./modules/software.nix
./modules/networking.nix
2020-04-22 22:13:03 +02:00
./modules/gui.nix
2020-05-09 18:53:22 +02:00
./modules/datasync.nix
2020-05-08 21:53:52 +02:00
./modules/audio.nix
2020-05-09 18:45:10 +02:00
./modules/development.nix
2020-05-14 03:04:30 +02:00
./modules/printing.nix
2020-08-10 23:45:26 +02:00
./modules/periodic.nix
./modules/power.nix
2022-05-02 05:47:52 +02:00
./modules/monitoring.nix
2021-09-29 12:09:36 +02:00
./overlays/nix-direnv.nix
2022-01-21 00:31:34 +01:00
./overlays/openconnect-sso.nix
./overlays/emacs-vterm.nix
];
2020-04-16 19:14:10 +02:00
}