Initial commit
This commit is contained in:
commit
1518f7007b
39 changed files with 1779 additions and 0 deletions
17
m/sddm.nix
Normal file
17
m/sddm.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ config, lib, ... }:
|
||||
let
|
||||
sddm = config.maid.sddm;
|
||||
in
|
||||
{
|
||||
options.maid.sddm = {
|
||||
enable = lib.mkEnableOption "sddm";
|
||||
};
|
||||
|
||||
config.services.displayManager.sddm = lib.mkIf sddm.enable {
|
||||
enable = true;
|
||||
enableHidpi = true;
|
||||
wayland = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue