Compare commits

..

2 commits

Author SHA1 Message Date
willifan
3a5fe4889f set Lillie WM to niri 2025-01-04 18:52:10 +01:00
willifan
24c67d3884 fix Lillie typo 2025-01-04 18:40:02 +01:00
4 changed files with 9 additions and 8 deletions

View file

@ -11,12 +11,12 @@
desktop = {
enable = true;
autostart.enable = false;
autologin.enable = false;
emulation.enable = true;
laser.enable = true;
hyprland = {
hardware.Lillie = true;
hardware.Lillie.enable = true;
};
};

View file

@ -36,7 +36,7 @@
enable = true;
user = "willifan";
autoStart = true;
desktopSession = "hyprland";
desktopSession = "niri";
};
};

View file

@ -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;

View file

@ -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;