Compare commits
2 commits
0d053f37bf
...
3a5fe4889f
Author | SHA1 | Date | |
---|---|---|---|
|
3a5fe4889f | ||
|
24c67d3884 |
4 changed files with 9 additions and 8 deletions
|
@ -11,12 +11,12 @@
|
||||||
|
|
||||||
desktop = {
|
desktop = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autostart.enable = false;
|
autologin.enable = false;
|
||||||
emulation.enable = true;
|
emulation.enable = true;
|
||||||
laser.enable = true;
|
laser.enable = true;
|
||||||
|
|
||||||
hyprland = {
|
hyprland = {
|
||||||
hardware.Lillie = true;
|
hardware.Lillie.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
user = "willifan";
|
user = "willifan";
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
desktopSession = "hyprland";
|
desktopSession = "niri";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, ... }:
|
{ lib, config, ... }:
|
||||||
{
|
{
|
||||||
options = {
|
options = {
|
||||||
|
|
||||||
|
@ -33,6 +33,11 @@
|
||||||
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,10 +2,6 @@
|
||||||
{
|
{
|
||||||
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