From 0fb2f9504fae59d631fdda5a6c4ffb2681cf994e Mon Sep 17 00:00:00 2001 From: James Patrick Date: Tue, 3 May 2022 00:10:06 -0400 Subject: [PATCH] Some clean up on isle i3 --- modules/applications/i3/i3.nix | 11 ++++++----- modules/applications/i3/picom.nix | 4 ++-- 2 files changed, 8 insertions(+), 7 deletions(-) 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; };