moved muninn to desktop.nix

moved pipewire and kernel into desktop.nix
This commit is contained in:
2024-12-20 13:50:32 -05:00
parent 4a348041c4
commit 02084080d2
6 changed files with 22 additions and 37 deletions

View File

@@ -1,10 +1,18 @@
{ pkgs, ... }:
{
imports = [
./desktop_kernel.nix
./pipewire.nix
];
boot = {
kernelPackages = pkgs.linuxPackages_6_12;
zfs.package = pkgs.zfs;
};
services = {
displayManager.sddm = {
enable = true;
wayland.enable = true;
};
desktopManager.plasma6.enable = true;
xserver = {
enable = true;
xkb = {
@@ -12,5 +20,13 @@
variant = "";
};
};
pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
wireplumber.enable = true;
};
};
}