diff options
| author | Seth Flynn <[email protected]> | 2025-02-13 17:44:18 -0500 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-02-13 22:09:11 -0500 |
| commit | 8531a2bc3189e31ce1623123f92cdcfce20e49b6 (patch) | |
| tree | 9632a5f799ece67019f97f5f99f2d3b01fb23477 /modules/nixos/desktop/plasma/default.nix | |
| parent | 386ecf3d14ea486aba523b14200fcd2e7e04b9d6 (diff) | |
nixos: make desktop stuff mixins
Diffstat (limited to 'modules/nixos/desktop/plasma/default.nix')
| -rw-r--r-- | modules/nixos/desktop/plasma/default.nix | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/modules/nixos/desktop/plasma/default.nix b/modules/nixos/desktop/plasma/default.nix deleted file mode 100644 index 6160afa..0000000 --- a/modules/nixos/desktop/plasma/default.nix +++ /dev/null @@ -1,43 +0,0 @@ -{ - config, - lib, - pkgs, - inputs', - ... -}: -let - cfg = config.desktop.plasma; -in -{ - options.desktop.plasma.enable = lib.mkEnableOption "Plasma desktop"; - - config = lib.mkIf cfg.enable { - environment = { - plasma6.excludePackages = with pkgs.kdePackages; [ - discover - khelpcenter - konsole - plasma-browser-integration - ]; - - sessionVariables = { - NIXOS_OZONE_WL = "1"; - }; - - systemPackages = [ - inputs'.krunner-nix.packages.default # thank you leah - pkgs.ghostty - pkgs.haruna # mpv frontend - ]; - }; - - services = { - displayManager.sddm = { - enable = true; - wayland.enable = true; - }; - - desktopManager.plasma6.enable = true; - }; - }; -} |
