1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

Use Plasma on nucturne

This commit is contained in:
Stefan Ellmauthaler 2023-04-10 12:04:52 +02:00
parent 49adfe43a7
commit e680a84b9f
Signed by: ellmau
GPG Key ID: C804A9C1B7AF8256
3 changed files with 4 additions and 3 deletions

View File

@ -19,9 +19,9 @@
# enable X11 with lightdm and i3 # enable X11 with lightdm and i3
graphical = { graphical = {
enable = true; enable = true;
sway.enable = true; sway.enable = false;
i3.enable = false; i3.enable = false;
plasma.enable = false; plasma.enable = true;
# set dpi if used in mobile applications # set dpi if used in mobile applications
# dpi = 180; # dpi = 180;
}; };

View File

@ -14,7 +14,7 @@ with lib; {
enable = true; enable = true;
displayManager = { displayManager = {
sddm.enable = true; sddm.enable = true;
defaultSession = "plasmawayland"; #defaultSession = "plasmawayland";
}; };
desktopManager.plasma5.enable = true; desktopManager.plasma5.enable = true;
}; };

View File

@ -15,5 +15,6 @@ with lib; {
}; };
gtk.enable = true; gtk.enable = true;
home.file.".background-image".source = ../../common/wallpaper/nix-wallpaper-nineish-dark-gray.png; home.file.".background-image".source = ../../common/wallpaper/nix-wallpaper-nineish-dark-gray.png;
home.file.".background-image.png".source = ../../common/wallpaper/nix-wallpaper-nineish-dark-gray.png;
}; };
} }