feat(home): Bundle i3 dependancies
This commit is contained in:
parent
60b871bce0
commit
a5bbca6c24
2 changed files with 23 additions and 6 deletions
|
@ -54,8 +54,6 @@ in
|
||||||
neo = enabled;
|
neo = enabled;
|
||||||
rbw = enabled;
|
rbw = enabled;
|
||||||
ripgrep = enabled;
|
ripgrep = enabled;
|
||||||
# TODO: is this xorg only? bundle under xorg if so
|
|
||||||
rofi = enabled;
|
|
||||||
ssh = enabled;
|
ssh = enabled;
|
||||||
starship = enabled;
|
starship = enabled;
|
||||||
systemctl = enabled;
|
systemctl = enabled;
|
||||||
|
@ -67,14 +65,11 @@ in
|
||||||
};
|
};
|
||||||
services = {
|
services = {
|
||||||
clipboard = enabled;
|
clipboard = enabled;
|
||||||
# TODO: bundle this under xorg
|
|
||||||
dunst = enabled;
|
|
||||||
# TODO: bundle this with xorg
|
|
||||||
polybar = enabled;
|
|
||||||
syncthing = enabled;
|
syncthing = enabled;
|
||||||
};
|
};
|
||||||
xorg = {
|
xorg = {
|
||||||
xsession = enabled;
|
xsession = enabled;
|
||||||
|
i3 = enabled;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
22
modules/home/xorg/i3/default.nix
Normal file
22
modules/home/xorg/i3/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
inherit (lib) mkEnableOption mkIf;
|
||||||
|
inherit (lib.marleyos) enabled;
|
||||||
|
|
||||||
|
cfg = config.marleyos.xorg.i3;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.marleyos.xorg.i3.enable = mkEnableOption "i3";
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
marleyos = {
|
||||||
|
programs.rofi = enabled;
|
||||||
|
services.polybar = enabled;
|
||||||
|
services.dunst = enabled;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue