init config

This commit is contained in:
2025-07-04 00:32:17 +02:00
commit 1a20402712
35 changed files with 2383 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
{ config, lib, pkgs, modulesPath, ... }:
{
options.lumpiasty.enableGnome = lib.mkEnableOption "Enable Gnome desktop";
config = lib.mkIf config.lumpiasty.enableGnome {
# Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the KDE Plasma Desktop Environment.
services.displayManager.sddm.enable = true;
services.desktopManager.plasma6.enable = true;
# Configure keymap in X11
services.xserver.xkb = {
layout = "pl";
variant = "";
};
# Configure console keymap
console.keyMap = "pl2";
# Enable external monitor brightness control
hardware.i2c.enable = true;
# Network
networking.useDHCP = lib.mkDefault false;
networking.networkmanager.enable = lib.mkDefault true;
# Enable touchpad support (enabled default in most desktopManager).
# services.xserver.libinput.enable = true;
# Use wayland in electron apps
environment.sessionVariables.NIXOS_OZONE_WL = "1";
};
}
+37
View File
@@ -0,0 +1,37 @@
{ config, lib, pkgs, modulesPath, ... }:
{
options.lumpiasty.enablePlasma = lib.mkEnableOption "Enable Plasma6 desktop";
config = lib.mkIf config.lumpiasty.enablePlasma {
# Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the KDE Plasma Desktop Environment.
services.displayManager.sddm.enable = true;
services.desktopManager.plasma6.enable = true;
# Configure keymap in X11
services.xserver.xkb = {
layout = "pl";
variant = "";
};
# Configure console keymap
console.keyMap = "pl2";
# Enable external monitor brightness control
hardware.i2c.enable = true;
# Network
networking.useDHCP = lib.mkDefault false;
networking.networkmanager.enable = lib.mkDefault true;
# Enable touchpad support (enabled default in most desktopManager).
# services.xserver.libinput.enable = true;
# Use wayland in electron apps
environment.sessionVariables.NIXOS_OZONE_WL = "1";
};
}
+60
View File
@@ -0,0 +1,60 @@
{ config, lib, pkgs, modulesPath, ... }:
{
options.lumpiasty.enablePulseaudio = lib.mkEnableOption "Enable Plasma6 desktop";
config = lib.mkIf config.lumpiasty.enablePulseaudio {
# Enable sound with pipewire. Dont forget after 24.05
services.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
# use the example session manager (no others are packaged yet so this is enabled by default,
# no need to redefine it in your config for now)
#media-session.enable = true;
wireplumber.configPackages = [
(pkgs.writeTextDir "share/wireplumber/wireplumber.conf.d/99-alsa-nova-3.conf" ''
monitor.alsa.rules = [
{
matches = [
{
node.name = "alsa_output.usb-SteelSeries_Arctis_Nova_3-00.analog-stereo"
}
]
actions = {
update-props = {
audio.format = "S24LE"
audio.rate = 96000
api.alsa.period-size = 1024
api.alsa.period-num = 4
api.alsa.disable-batch = false
}
}
}
]
'')
];
};
# hardware.pulseaudio = {
# enable = true;
# support32Bit = true;
# extraConfig = ''
# unload-module module-role-cork
# '';
# };
# hardware.alsa.enablePersistence = true; # not implemented in 24.05
# Remove me after 24.05
# sound.enable = true;
};
}
+195
View File
@@ -0,0 +1,195 @@
{ config, lib, pkgs, modulesPath, ... }:
{
# Enable system76-scheduler
# Config basically rewrite of stock, a bit tuned
services.system76-scheduler = {
enable = true;
useStockConfig = false;
settings = {
processScheduler = {
pipewireBoost = {
enable = true;
profile = {
nice = -6;
ioClass = "best-effort";
ioPrio = 0;
};
};
foregroundBoost = {
enable = true;
foreground = {
nice = 0;
ioClass = "best-effort";
ioPrio = 0;
};
background = {
nice = 6;
ioClass = "idle";
};
};
};
};
assignments = {
sound-server = {
nice = -15;
ioClass = "realtime";
ioPrio = 0;
matchers = [
# original config matches on /usr/bin/..., but this is NixOS
"pipewire"
"pipewire-pulse"
"jackd"
];
};
recording = {
nice = -9;
ioClass = "best-effort";
ioPrio = 0;
matchers = [
"amsynth"
"jamesdsp"
"jitsi"
"mumble"
"obs"
"teams"
"wireplumber"
"zoom"
"bitwig-studio"
"include name=\"Bitwig*\""
];
};
games = {
nice = -5;
ioClass = "best-effort";
ioPrio = 0;
matchers = [
"lutris"
"steam"
"heroic"
"itch"
"vrcompositor"
"vrdashboard"
"vrmonitor"
"vrserver"
"include descends=\"steam\""
"include descends=\"lutris\""
"include descends=\"heroic\""
"include descends=\"itch\""
];
};
desktop-environment = {
nice = -3;
ioClass = "best-effort";
ioPrio = 0;
matchers = [
"cosmic-comp"
"gnome-shell"
"i3wm"
"kwin"
"kwin_wayland"
"Xwayland"
"sway"
"Hyprland"
"gamescope"
"Xorg"
];
};
session-services = {
nice = 9;
ioClass = "idle";
matchers = [
"include parent=\"gnome-session-binary\""
"include parent=\"gvfsd\""
"include cgroup=\"/user.slice/*.service\" parent=\"systemd\""
"include cgroup=\"/user.slice/*/session.slice/*\" parent=\"systemd\""
"exclude cgroup=\"/user.slice/*/app.slice/*\""
"exclude cgroup=\"/user.slice/*/session.slice/*\""
"exclude cgroup=\"/user.slice/*app-dbus*\""
];
};
system-services = {
nice = 12;
ioClass = "idle";
matchers = [
"include cgroup=\"/system.slice/*\""
];
};
package-manager = {
nice = 15;
class = "batch";
ioClass = "idle";
matchers = [
"include name=\"apt-*\""
"include name=\"dpkg-*\""
"apt"
"dpkg"
"flatpak"
"fwupd"
"packagekitd"
"update-initramfs"
"nix"
];
};
batch = {
nice = 19;
class = "idle";
ioClass = "idle";
matchers = [
"include name=\"sbuild-*\""
"\"7z\""
"\"7za\""
"\"7zr\""
"ar"
"boinc"
"c++"
"cargo"
"clang"
"cmake"
"cpp"
"FAHClient"
"FAHCoreWrapper"
"fossilize-replay"
"g++"
"gcc"
"gradle"
"javac"
"ld"
"lld"
"make"
"mold"
"mvn"
"ninja"
"rust-analyzer"
"rustc"
"sbuild"
"tar"
"tracker-miner-fs-3"
"unrar"
"zip"
];
};
};
exceptions = [
"include descends=\"chrt\""
"include descends=\"gamemoderun\""
"include descends=\"ionice\""
"include descends=\"nice\""
"include descends=\"taskset\""
"include descends=\"schedtool\""
"chrt"
"dbus"
"dbus-broker"
"gamemoderun"
"ionice"
"nice"
"rtkit-daemon"
"systemd"
"taskset"
"schedtool"
"/etc/profiles/per-user/user/bin/easyeffects*"
];
};
# Add https://github.com/maxiberta/kwin-system76-scheduler-integration kwin script
}