Compare commits
1 commit
d7de392201
...
427179ad30
Author | SHA1 | Date | |
---|---|---|---|
427179ad30 |
2 changed files with 27 additions and 30 deletions
|
@ -78,23 +78,13 @@ let
|
||||||
example = "/sys/class/hwmon/hwmon2/temp1_input";
|
example = "/sys/class/hwmon/hwmon2/temp1_input";
|
||||||
};
|
};
|
||||||
|
|
||||||
windowManager.options = {
|
sway.options = {
|
||||||
enable = lib.mkEnableOption "window manager" // {
|
enable = lib.mkEnableOption "sway" // {
|
||||||
default = fromConfig [
|
default = fromConfig [
|
||||||
"gui"
|
"gui"
|
||||||
"windowManager"
|
"sway"
|
||||||
"enable"
|
|
||||||
] true;
|
] true;
|
||||||
};
|
};
|
||||||
windowManager = lib.mkOption {
|
|
||||||
description = "Which window manager to enable";
|
|
||||||
type = types.enum [ "niri" ];
|
|
||||||
default = fromConfig [
|
|
||||||
"gui"
|
|
||||||
"windowManager"
|
|
||||||
"windowManager"
|
|
||||||
] "niri";
|
|
||||||
};
|
|
||||||
background = lib.mkOption {
|
background = lib.mkOption {
|
||||||
description = "The wallpaper to use.";
|
description = "The wallpaper to use.";
|
||||||
type = types.path;
|
type = types.path;
|
||||||
|
@ -124,6 +114,26 @@ let
|
||||||
default = true;
|
default = true;
|
||||||
example = false;
|
example = false;
|
||||||
};
|
};
|
||||||
|
exec = lib.mkOption {
|
||||||
|
description = "Run commands when starting sway.";
|
||||||
|
default = { };
|
||||||
|
type = types.submodule {
|
||||||
|
options = {
|
||||||
|
once = lib.mkOption {
|
||||||
|
description = "Programs to start only once (`exec`).";
|
||||||
|
type = types.listOf types.str;
|
||||||
|
default = [ ];
|
||||||
|
example = [ "signal-desktop --start-in-tray" ];
|
||||||
|
};
|
||||||
|
always = lib.mkOption {
|
||||||
|
description = "Programs to start whenever the config is sourced (`exec_always`).";
|
||||||
|
type = types.listOf types.str;
|
||||||
|
default = [ ];
|
||||||
|
example = [ "signal-desktop --start-in-tray" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
gui.options =
|
gui.options =
|
||||||
|
@ -142,10 +152,10 @@ let
|
||||||
default = null;
|
default = null;
|
||||||
type = types.nullOr (types.submodule tempInfo);
|
type = types.nullOr (types.submodule tempInfo);
|
||||||
};
|
};
|
||||||
windowManager = lib.mkOption {
|
sway = lib.mkOption {
|
||||||
description = "Window manager configuration.";
|
description = "Sway window manager configuration.";
|
||||||
default = { };
|
default = { };
|
||||||
type = types.submodule windowManager;
|
type = types.submodule sway;
|
||||||
};
|
};
|
||||||
terminal = lib.mkOption {
|
terminal = lib.mkOption {
|
||||||
description = "The terminal emulator to use.";
|
description = "The terminal emulator to use.";
|
||||||
|
|
|
@ -37,20 +37,7 @@ let
|
||||||
options.autoStart = mkDisableOption "autostarting ydotool at login";
|
options.autoStart = mkDisableOption "autostarting ydotool at login";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
windowManager = lib.mkOption {
|
windowManager = mkDisableOption "window manager";
|
||||||
description = "Window manager configuration";
|
|
||||||
default = { };
|
|
||||||
type = types.submodule {
|
|
||||||
options = {
|
|
||||||
enable = mkDisableOption "window manager";
|
|
||||||
windowManager = lib.mkOption {
|
|
||||||
description = "Which window manager to enable";
|
|
||||||
type = types.enum [ "niri" ];
|
|
||||||
default = "niri";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
styling.options = {
|
styling.options = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue