[NixOS] Fix issue with propagatedBuildInputs for wyoming-satellite

This commit is contained in:
2025-02-06 13:27:20 -07:00
parent 94e3c08f88
commit 6fe2f72025
9 changed files with 71 additions and 59 deletions

View File

@@ -1,6 +1,11 @@
{ config, makeEnable, ... }:
{ pkgs, config, makeEnable, ... }:
makeEnable config "myModules.plasma" true {
services.displayManager.sddm.enable = true;
services.displayManager.sddm = {
enable = true;
extraPackages = with pkgs; [
# sddm-astronaut
];
};
services.xserver = {
desktopManager.plasma5.enable = true;
};