cider: plasma

This commit is contained in:
41666 2024-01-21 17:31:59 -05:00
parent df5cebc8af
commit 5c212850c7
2 changed files with 21 additions and 3 deletions

View file

@ -0,0 +1,18 @@
{ pkgs, ... }: {
services.xserver = {
enable = true;
displayManager = {
sddm.enable = true;
};
desktopManager = {
xterm.enable = false;
plasma5.enable = true;
};
layout = "us";
xkbVariant = "";
};
}

View file

@ -5,7 +5,7 @@
./hardware-configuration.nix ./hardware-configuration.nix
../../client.nix ../../client.nix
../../features/xfce.nix ../../features/plasma5.nix
../../features/sound/asahi.nix ../../features/sound/asahi.nix
../../features/wifi.nix ../../features/wifi.nix
../../features/tailscale.nix ../../features/tailscale.nix
@ -24,9 +24,9 @@
useExperimentalGPUDriver = true; useExperimentalGPUDriver = true;
experimentalGPUInstallMode = "replace"; experimentalGPUInstallMode = "replace";
setupAlsaUcm = true;
}; };
networking.wireless.iwd.package = pkgs.stable.iwd; # unstable issue on aarch64: https://github.com/NixOS/nixpkgs/issues/273958 networking.wireless.iwd.package = pkgs.stable.iwd; # unstable issue on aarch64: https://github.com/NixOS/nixpkgs/issues/273958
} }