sddm
This commit is contained in:
parent
9225c0a888
commit
0d55f0246c
2 changed files with 14 additions and 1 deletions
|
|
@ -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
12
nixos/sddm.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue