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 = {
|
desktop = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autologin.enable = false;
|
autostart.enable = false;
|
||||||
emulation.enable = true;
|
emulation.enable = true;
|
||||||
laser.enable = true;
|
laser.enable = true;
|
||||||
|
|
||||||
hyprland = {
|
hyprland = {
|
||||||
hardware.Lillie.enable = true;
|
hardware.Lillie = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
user = "willifan";
|
user = "willifan";
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
desktopSession = "niri";
|
desktopSession = "hyprland";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, config, ... }:
|
{ lib, ... }:
|
||||||
{
|
{
|
||||||
options = {
|
options = {
|
||||||
|
|
||||||
|
@ -33,11 +33,6 @@
|
||||||
type = lib.types.bool;
|
type = lib.types.bool;
|
||||||
};
|
};
|
||||||
|
|
||||||
autologin.enable = lib.mkOption {
|
|
||||||
default = config.desktop.enable;
|
|
||||||
type = lib.types.bool;
|
|
||||||
};
|
|
||||||
|
|
||||||
windowManager = lib.mkOption {
|
windowManager = lib.mkOption {
|
||||||
default = "Hyprland";
|
default = "Hyprland";
|
||||||
type = lib.types.str;
|
type = lib.types.str;
|
||||||
|
|
|
@ -2,6 +2,10 @@
|
||||||
{
|
{
|
||||||
options = {
|
options = {
|
||||||
desktop = {
|
desktop = {
|
||||||
|
autologin.enable = lib.mkOption {
|
||||||
|
default = config.desktop.enable;
|
||||||
|
type = lib.types.bool;
|
||||||
|
};
|
||||||
fuzzel.enable = lib.mkOption {
|
fuzzel.enable = lib.mkOption {
|
||||||
default = config.desktop.enable;
|
default = config.desktop.enable;
|
||||||
type = lib.types.bool;
|
type = lib.types.bool;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue