something isnt working so i will try it on kde

This commit is contained in:
Sakooooo 2023-07-09 22:57:14 +03:00
parent 717a6c5215
commit 65bed8dca0
Signed by: sako
GPG key ID: 3FD715D87D7725E0
3 changed files with 20 additions and 0 deletions

View file

@ -16,6 +16,7 @@
desktop = {
kitty.enable = true;
bspwm.enable = true;
kde.enable = true;
browsers = {
qutebrowser.enable = true;
# for those quick thinsg where i dont know how to do it on qutebrowser

View file

@ -2,6 +2,7 @@
imports = [
./kitty
./bspwm
./kde
./browsers
./apps
./game

View file

@ -0,0 +1,18 @@
{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.desktop.kde;
in
{
options.modules.desktop.kde = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
services.xserver = {
enable = true;
libinput.enable = true;
desktopManager.plasma5.enable = true;
};
};
}