add kde config
This commit is contained in:
parent
875fe5ebe4
commit
c65c6a1331
|
@ -69,7 +69,8 @@
|
||||||
home-manager.extraSpecialArgs = { inherit inputs; };
|
home-manager.extraSpecialArgs = { inherit inputs; };
|
||||||
}
|
}
|
||||||
] ++ lib.optional (desktop == "sway") ./system/sway.nix
|
] ++ lib.optional (desktop == "sway") ./system/sway.nix
|
||||||
++ lib.optional (desktop == "gnome") ./system/gnome.nix;
|
++ lib.optional (desktop == "gnome") ./system/gnome.nix
|
||||||
|
++ lib.optional (desktop == "kde") ./system/kde.nix;
|
||||||
in {
|
in {
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
i15 = lib.nixosSystem {
|
i15 = lib.nixosSystem {
|
||||||
|
|
14
system/kde.nix
Normal file
14
system/kde.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{ config, pkgs, ... }: {
|
||||||
|
# Enable the X11 windowing system.
|
||||||
|
services.xserver.enable = true;
|
||||||
|
# Enable the KDE Desktop Environment.
|
||||||
|
services.xserver.displayManager.sddm.enable = true;
|
||||||
|
services.xserver.desktopManager.plasma5.enable = true;
|
||||||
|
# services.xserver.displayManager.autologin.user = "lelgenio";
|
||||||
|
programs.dconf.enable = true;
|
||||||
|
# environment.systemPackages = with pkgs;
|
||||||
|
# with gnome; [
|
||||||
|
# gnome-tweaks
|
||||||
|
# dconf-editor
|
||||||
|
# ];
|
||||||
|
}
|
Loading…
Reference in a new issue