Compare commits
No commits in common. "3a5fe4889f9b8d786e307b76bdbd16a27a36667b" and "0d053f37bf0e3b901376535c1274ee7864ee9b9c" have entirely different histories.
3a5fe4889f
...
0d053f37bf
4 changed files with 8 additions and 9 deletions
|
@ -11,12 +11,12 @@
|
|||
|
||||
desktop = {
|
||||
enable = true;
|
||||
autologin.enable = false;
|
||||
autostart.enable = false;
|
||||
emulation.enable = true;
|
||||
laser.enable = true;
|
||||
|
||||
hyprland = {
|
||||
hardware.Lillie.enable = true;
|
||||
hardware.Lillie = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
enable = true;
|
||||
user = "willifan";
|
||||
autoStart = true;
|
||||
desktopSession = "niri";
|
||||
desktopSession = "hyprland";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, config, ... }:
|
||||
{ lib, ... }:
|
||||
{
|
||||
options = {
|
||||
|
||||
|
@ -33,11 +33,6 @@
|
|||
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,6 +2,10 @@
|
|||
{
|
||||
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
Add a link
Reference in a new issue