non important commit
This commit is contained in:
parent
80e393d1d3
commit
9d5d27ff3d
6 changed files with 46 additions and 30 deletions
23
configuration/modules/sddm.nix
Normal file
23
configuration/modules/sddm.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{pkgs, ...}: let
|
||||
sddm-astronaut = pkgs.sddm-astronaut.override {
|
||||
embeddedTheme = "hyprland_kath";
|
||||
};
|
||||
in {
|
||||
environment.systemPackages = [sddm-astronaut];
|
||||
|
||||
services.displayManager = {
|
||||
sddm = {
|
||||
package = pkgs.kdePackages.sddm;
|
||||
extraPackages = with pkgs.kdePackages; [
|
||||
qtsvg
|
||||
qtmultimedia
|
||||
qtvirtualkeyboard
|
||||
];
|
||||
enable = true;
|
||||
wayland.enable = false;
|
||||
autoNumlock = true;
|
||||
enableHidpi = false;
|
||||
theme = "sddm-astronaut-theme";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue