diff --git a/modules/applications/i3/i3.nix b/modules/applications/i3/i3.nix index fbf31f8..dd5d98c 100644 --- a/modules/applications/i3/i3.nix +++ b/modules/applications/i3/i3.nix @@ -39,13 +39,14 @@ in with lib; { enable = true; package = pkgs.i3-gaps; extraPackages = with pkgs; [ - feh - xdotool - playerctl dmenu # application launcher most people use - i3status # gives you the default i3 status bar - i3lock # default i3 screen locker + feh i3blocks # if you are planning on using i3blocks over i3status + i3lock # default i3 screen locker + i3status # gives you the default i3 status bar + playerctl + xclip + xdotool ]; }; }; diff --git a/modules/applications/i3/picom.nix b/modules/applications/i3/picom.nix index 16928f8..ad848ad 100644 --- a/modules/applications/i3/picom.nix +++ b/modules/applications/i3/picom.nix @@ -1,11 +1,11 @@ { config, lib, pkgs, ... }: let - cfg = config.this.application.picom; + cfg = config.this.application.i3.picom; i3 = config.this.application.i3; in with lib; { options = { - this.application.picom.enable = mkOption { + this.application.i3.picom.enable = mkOption { default = i3.enable; type = with types; bool; };