This commit is contained in:
Benjamin Palko 2024-07-29 19:38:20 -04:00
parent 9225c0a888
commit 0d55f0246c
2 changed files with 14 additions and 1 deletions

View file

@ -14,11 +14,12 @@ in
./system.nix ./system.nix
./network.nix ./network.nix
./nvidia.nix ./nvidia.nix
./media.nix ./sddm.nix
./services.nix ./services.nix
./security.nix ./security.nix
./shell.nix ./shell.nix
./hyprland.nix ./hyprland.nix
./media.nix
./gaming.nix ./gaming.nix
]; ];

12
nixos/sddm.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ sddm-chili-theme ];
# services.xserver.enable = true;
services.displayManager.sddm = {
enable = true;
theme = "chili";
# package = pkgs.kdePackages.sddm;
package = pkgs.libsForQt5.sddm;
wayland.enable = true;
};
}