783 current 2024-06-27 11:49:27 24.11.20240627.3664857 6.9.6-zen1 *
This commit is contained in:
parent
2c2fef30d9
commit
b2d397a715
5 changed files with 101 additions and 30 deletions
26
modules/home/wms/river/default.nix
Normal file
26
modules/home/wms/river/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
with lib.custom; let
|
||||
cfg = config.wms.river;
|
||||
in {
|
||||
options.wms.river = with types; {
|
||||
enable = mkBoolOpt false "Enable River WM";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
wayland.windowManager.river = {
|
||||
enable = true;
|
||||
settings = {
|
||||
spawn = [
|
||||
"firefox"
|
||||
"kitty"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue