Compare commits

..

1 commit

Author SHA1 Message Date
d7de392201
wip: switch to niri [skip-ci]
Some checks failed
/ check (nvimDev) (push) Successful in 6s
/ check (nvimHeadless) (push) Successful in 2s
/ check (nvimNoBundledBins) (push) Successful in 4s
/ check (nvimNoLsp) (push) Successful in 5s
/ check (nvimNoTSGrammars) (push) Successful in 5s
/ check (treefmt) (push) Successful in 2s
/ check-renovaterc (push) Successful in 2s
/ build (audiomenu) (push) Successful in 2s
/ build (docs) (push) Successful in 3s
/ build (jpassmenu) (push) Successful in 1s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Failing after 2s
/ build (nvim) (push) Successful in 8s
/ report-size (push) Has been skipped
Looks cooler c:
2025-03-14 22:51:26 +01:00
2 changed files with 30 additions and 27 deletions

View file

@ -78,13 +78,23 @@ let
example = "/sys/class/hwmon/hwmon2/temp1_input";
};
sway.options = {
enable = lib.mkEnableOption "sway" // {
windowManager.options = {
enable = lib.mkEnableOption "window manager" // {
default = fromConfig [
"gui"
"sway"
"windowManager"
"enable"
] true;
};
windowManager = lib.mkOption {
description = "Which window manager to enable";
type = types.enum [ "niri" ];
default = fromConfig [
"gui"
"windowManager"
"windowManager"
] "niri";
};
background = lib.mkOption {
description = "The wallpaper to use.";
type = types.path;
@ -114,26 +124,6 @@ let
default = true;
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 =
@ -152,10 +142,10 @@ let
default = null;
type = types.nullOr (types.submodule tempInfo);
};
sway = lib.mkOption {
description = "Sway window manager configuration.";
windowManager = lib.mkOption {
description = "Window manager configuration.";
default = { };
type = types.submodule sway;
type = types.submodule windowManager;
};
terminal = lib.mkOption {
description = "The terminal emulator to use.";

View file

@ -37,7 +37,20 @@ let
options.autoStart = mkDisableOption "autostarting ydotool at login";
};
};
windowManager = mkDisableOption "window manager";
windowManager = lib.mkOption {
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 = {