dotfiles/configs/thilo-pc/nixos.nix

96 lines
2.2 KiB
Nix
Raw Normal View History

2023-10-28 23:16:29 +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).
2024-02-27 02:54:02 +01:00
{ pkgs, ... }:
2023-10-28 23:16:29 +02:00
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
2023-11-11 21:52:08 +01:00
./../../nixos/common.nix
2024-03-15 14:42:02 +01:00
./../../nixos/builders.nix
2023-10-28 23:16:29 +02:00
];
# Bootloader.
2024-02-27 02:54:02 +01:00
boot = {
loader = {
systemd-boot = {
enable = true;
extraInstallCommands = ''
${pkgs.gnused}/bin/sed -i "/default/c\default @saved" /boot/loader/loader.conf
'';
};
efi.canTouchEfiVariables = true;
};
kernelPackages = pkgs.linuxPackages_latest;
2024-03-04 02:10:30 +01:00
binfmt.registrations.appimage = {
wrapInterpreterInShell = false;
interpreter = "${pkgs.appimage-run}/bin/appimage-run";
recognitionType = "magic";
offset = 0;
mask = ''\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\xff'';
magicOrExtension = ''\x7fELF....AI\x02'';
};
2024-02-27 02:54:02 +01:00
};
2023-10-28 23:16:29 +02:00
networking.hostName = "thilo-pc";
# Enable the X11 windowing system.
services = {
xserver = {
enable = true;
displayManager.sddm.enable = true;
2024-03-18 15:43:15 +01:00
displayManager.sddm.wayland.enable = true;
xkb = {
variant = "";
layout = "us";
};
2023-10-28 23:16:29 +02:00
};
2024-03-12 00:13:50 +01:00
ollama = {
2024-03-18 15:43:15 +01:00
enable = false;
2024-03-12 00:13:50 +01:00
acceleration = "rocm";
};
2024-03-18 15:43:15 +01:00
desktopManager.plasma6.enable = true;
2024-03-21 02:01:24 +01:00
blueman.enable = true;
2023-10-28 23:16:29 +02:00
};
2024-03-04 02:10:30 +01:00
programs.kdeconnect.enable = true;
programs.nix-ld.enable = true;
2023-11-14 02:40:28 +01:00
hardware.opengl = {
2024-05-28 14:38:22 +02:00
extraPackages = with pkgs; [
vaapiVdpau
libvdpau-va-gl
];
2023-11-14 02:40:28 +01:00
};
2024-03-21 02:01:24 +01:00
hardware.bluetooth.enable = true;
2023-11-14 02:40:28 +01:00
2024-03-18 15:43:15 +01:00
programs.steam.gamescopeSession = {
enable = true;
2024-03-21 02:01:24 +01:00
env = {
WLR_RENDERER = "vulkan";
DXVK_HDR = "1";
STEAM_GAMESCOPE_VRR_SUPPORTED = "1";
SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS = "0";
ENABLE_GAMESCOPE_WSI = "1";
WINE_FULLSCREEN_FSR = "1";
};
2024-03-18 15:43:15 +01:00
args = [
2024-03-21 02:01:24 +01:00
"-f"
"-F fsr"
"--rt"
"--adaptive-sync"
"-w 1920"
"-h 1080"
"-r 120"
"--hdr-enabled"
"--hdr-itm-enable"
"-O DP-3"
2024-03-18 15:43:15 +01:00
];
};
2024-05-28 14:38:22 +02:00
nixpkgs.config.permittedInsecurePackages = [ "nix-2.16.2" ];
2024-03-10 18:29:59 +01:00
2023-10-28 23:16:29 +02:00
system.stateVersion = "23.05";
}