set Lillie WM to niri
This commit is contained in:
parent
24c67d3884
commit
3a5fe4889f
4 changed files with 8 additions and 7 deletions
|
@ -11,7 +11,7 @@
|
|||
|
||||
desktop = {
|
||||
enable = true;
|
||||
autostart.enable = false;
|
||||
autologin.enable = false;
|
||||
emulation.enable = true;
|
||||
laser.enable = true;
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
enable = true;
|
||||
user = "willifan";
|
||||
autoStart = true;
|
||||
desktopSession = "hyprland";
|
||||
desktopSession = "niri";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, ... }:
|
||||
{ lib, config, ... }:
|
||||
{
|
||||
options = {
|
||||
|
||||
|
@ -33,6 +33,11 @@
|
|||
type = lib.types.bool;
|
||||
};
|
||||
|
||||
autologin.enable = lib.mkOption {
|
||||
default = config.desktop.enable;
|
||||
type = lib.types.bool;
|
||||
};
|
||||
|
||||
windowManager = lib.mkOption {
|
||||
default = "Hyprland";
|
||||
type = lib.types.str;
|
||||
|
|
|
@ -2,10 +2,6 @@
|
|||
{
|
||||
options = {
|
||||
desktop = {
|
||||
autologin.enable = lib.mkOption {
|
||||
default = config.desktop.enable;
|
||||
type = lib.types.bool;
|
||||
};
|
||||
fuzzel.enable = lib.mkOption {
|
||||
default = config.desktop.enable;
|
||||
type = lib.types.bool;
|
||||
|
|
Loading…
Add table
Reference in a new issue