Compare commits

...
3 Commits
Author SHA1 Message Date
Weckyy702 99cd12bbc6 Devtools: Add more default development tools for convenience 2026-07-11 13:20:36 +02:00
Weckyy702 1827e1e8d7 Audio: Use Pipewire for audio handling
this fixed some annyoing issues with multiple audio outputs
2026-07-11 13:15:27 +02:00
Weckyy702 82023d7721 Keith: Add Rust toolchain 2026-07-10 02:30:48 +02:00
5 changed files with 21 additions and 1 deletions
+1
View File
@@ -8,6 +8,7 @@
development-tools
i18n-de
mount-duke-smb
keith-devtools
# (sunshine "weckyy702")
#TODO: moar aspects
+9
View File
@@ -0,0 +1,9 @@
{ inputs, ... }: {
flake.modules.nixos.keith-devtools = {
imports = with inputs.self.modules.nixos;
with inputs.self.factory; [
development-tools
rust-dev
];
};
}
@@ -5,6 +5,10 @@
gnumake
clang
gcc
gdb
perf
python3
libqalculate
man-pages
man-pages-posix
+6 -1
View File
@@ -1,8 +1,13 @@
{
flake.modules.nixos.pipewire = {
# See https://nixos.wiki/wiki/NixOS_Wiki:Audio
hardware.alsa.enable = false;
services.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
alsa.enable = true;
enable = true;
audio.enable = true;
alsa.enable = true;
wireplumber.enable = true;
};
};
+1
View File
@@ -3,6 +3,7 @@
imports = with inputs.self.modules.nixos; [
system-base
hyprland
pipewire
#TODO: moar aspects
];