nix-configurations/hosts/m3-nix/default.nix

150 lines
4.6 KiB
Nix
Raw Permalink Normal View History

2023-04-09 09:12:23 +00:00
{ config, inputs, pkgs, lib, ... }:
2022-12-31 12:07:15 +00:00
with pkgs;
2022-12-30 12:05:46 +00:00
let
2022-12-31 12:07:15 +00:00
nvidia-offload = writeShellScriptBin "nvidia-offload" ''
2022-12-30 12:05:46 +00:00
#!/bin/bash
export __NV_PRIME_RENDER_OFFLOAD=1
export __NV_PRIME_RENDER_OFFLOAD_PROVIDER=NVIDIA-G0
export __GLX_VENDOR_LIBRARY_NAME=nvidia
export __VK_LAYER_NV_optimus=NVIDIA_only
exec "$@"
'';
in {
2022-12-31 12:07:15 +00:00
imports = [
./hardware.nix
./hardware-configuration.nix # Include the results of the hardware scan.
../common/users/m3tam3re
../common/base
./services
2023-04-09 09:12:23 +00:00
inputs.hyprland.nixosModules.default
2022-12-30 12:05:46 +00:00
];
specialisation = {
external-display.configuration = {
2022-12-31 12:07:15 +00:00
system.nixos.tags = [ "Externer-Monitor" ];
2022-12-30 12:05:46 +00:00
hardware.nvidia.prime.offload.enable = lib.mkForce false;
hardware.nvidia.powerManagement.finegrained = lib.mkForce false;
};
};
specialisation = {
dual-display.configuration = {
2022-12-31 12:07:15 +00:00
system.nixos.tags = [ "Dual-Monitor" ];
2022-12-30 12:05:46 +00:00
hardware.nvidia.prime.offload.enable = lib.mkForce false;
hardware.nvidia.prime.sync.enable = lib.mkForce true;
hardware.nvidia.powerManagement.finegrained = lib.mkForce false;
};
};
2022-12-31 12:07:15 +00:00
2022-12-30 12:05:46 +00:00
# Bootloader.
# boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.efi.efiSysMountPoint = "/boot/efi";
boot.loader.grub.enable = true;
boot.loader.grub.efiSupport = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "nodev";
boot.loader.grub.useOSProber = true;
2023-04-06 15:12:19 +00:00
hardware.tuxedo-keyboard.enable = true;
boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ];
boot.kernelModules = [ "v4l2loopback" ];
2023-04-09 09:12:23 +00:00
2022-12-30 12:05:46 +00:00
boot.kernelParams = [
"tuxedo_keyboard.mode=0" # https://github.com/tuxedocomputers/tuxedo-keyboard#kernelparam
"tuxedo_keyboard.brightness=255"
"tuxedo_keyboard.color_left=0xff0a0a"
];
# Setup keyfile
boot.initrd.secrets = { "/crypto_keyfile.bin" = null; };
boot.extraModprobeConfig = ''
options kvm_intel nested=1
options kvm_intel emulate_invalid_guest_state=0
options kvm ignore_msrs=1
2023-04-06 15:12:19 +00:00
options v4l2loopback exclusive_caps=1 max_buffers=2
2022-12-30 12:05:46 +00:00
'';
boot.initrd.luks.devices."luks-a7b1ba69-0951-4347-886e-4c0c24c2b871".keyFile =
"/crypto_keyfile.bin";
networking.hostName = "m3-nix"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
networking.firewall.extraCommands =
"iptables -t raw -A OUTPUT -p udp -m udp --dport 137 -j CT --helper netbios-ns";
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Enable networking
networking.networkmanager.enable = true;
networking.wg-quick.interfaces = {
wg0 = {
2023-04-06 15:12:19 +00:00
address = [ "10.8.0.3/24" ];
privateKeyFile = "/root/wg/peer_m3-nix/privatekey-peer_m3-nix";
dns = [ "10.88.0.1" ];
2022-12-30 12:05:46 +00:00
peers = [{
2023-04-06 15:12:19 +00:00
publicKey = "Il/nVlX2qzmZMJQ8QAKN+uQdkcK66Wt7MWZn9Vku6Tg=";
presharedKey = "sOgKQCXs+WAEpVvnkqTHlK1ItWpmP/xiexhAJ6oMBJs=";
2022-12-30 12:05:46 +00:00
allowedIPs = [ "0.0.0.0/0" "::/0" ];
2023-04-06 15:12:19 +00:00
endpoint = "wg.lanakk.com:51820";
2022-12-30 12:05:46 +00:00
persistentKeepalive = 25;
}];
};
};
2023-04-06 15:12:19 +00:00
services.avahi = {
enable = true;
nssmdns = true;
publish = {
addresses = true;
workstation = true;
userServices = true;
};
};
2023-04-09 09:12:23 +00:00
# xdg.portal = {
# enable = true;
# wlr.enable = true;
# extraPortals = [ pkgs.xdg-desktop-portal-gtk pkgs.xdg-desktop-portal-wlr ];
# };
programs.hyprland = {
enable = true;
nvidiaPatches = true;
};
2023-04-06 15:12:19 +00:00
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
2023-04-09 09:12:23 +00:00
2022-12-31 12:07:15 +00:00
time.timeZone = "Europe/Berlin";
2022-12-30 12:05:46 +00:00
i18n.defaultLocale = "de_DE.utf8";
console.keyMap = "de";
2023-04-06 15:12:19 +00:00
environment.systemPackages = [ nvidia-offload neovim ];
nix.extraOptions = ''
experimental-features = nix-command
'';
2022-12-31 12:07:15 +00:00
nix = {
settings = { experimental-features = "nix-command flakes"; };
gc = {
automatic = true;
options = "--delete-older-than 30d";
};
optimise.automatic = true;
2022-12-30 12:05:46 +00:00
};
nixpkgs.config.allowUnfree = 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 leavecatenate(variables, "bootdev", bootdev)
# 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-12-31 12:07:15 +00:00
system.stateVersion = "22.11"; # Did you read the comment?
2022-12-30 12:05:46 +00:00
}