cat
This commit is contained in:
parent
eb54eb7237
commit
150fa1c9c5
6 changed files with 19 additions and 26 deletions
|
@ -16,10 +16,8 @@
|
||||||
kitty.enable = true;
|
kitty.enable = true;
|
||||||
xmonad.enable = false;
|
xmonad.enable = false;
|
||||||
awesome.enable = false;
|
awesome.enable = false;
|
||||||
dwm = {
|
dwm.enable = true;
|
||||||
enable = true;
|
picom.enable = true;
|
||||||
dwmblocks.enable = false;
|
|
||||||
};
|
|
||||||
gnome.enable = false;
|
gnome.enable = false;
|
||||||
dunst.enable = true;
|
dunst.enable = true;
|
||||||
browsers = {
|
browsers = {
|
||||||
|
|
|
@ -17,5 +17,6 @@
|
||||||
./chat
|
./chat
|
||||||
./media
|
./media
|
||||||
./dunst
|
./dunst
|
||||||
|
./picom
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,9 +4,6 @@ let
|
||||||
cfg = config.modules.desktop.dwm;
|
cfg = config.modules.desktop.dwm;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
|
||||||
./dwmblocks.nix
|
|
||||||
];
|
|
||||||
options.modules.desktop.dwm = {
|
options.modules.desktop.dwm = {
|
||||||
enable = mkEnableOption false;
|
enable = mkEnableOption false;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
{ outputs, options, config, lib, pkgs, ...}:
|
|
||||||
with lib;
|
|
||||||
let
|
|
||||||
cfg = config.modules.desktop.dwm.dwmblocks;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.modules.desktop.dwm.dwmblocks = {
|
|
||||||
enable = mkEnableOption false;
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
users.users.sako.packages = with pkgs; [
|
|
||||||
dwmblocks
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
16
modules/desktop/picom/default.nix
Normal file
16
modules/desktop/picom/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{ outputs, options, config, lib, pkgs, ...}:
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.modules.desktop.picom;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.modules.desktop.picom = {
|
||||||
|
enable = mkEnableOption false;
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
picom
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -22,9 +22,6 @@
|
||||||
dwm = prev.dwm.overrideAttrs (old: {
|
dwm = prev.dwm.overrideAttrs (old: {
|
||||||
src = ../config/dwm;
|
src = ../config/dwm;
|
||||||
});
|
});
|
||||||
dwmblocks = prev.dwmblocks.overrideAttrs (old: {
|
|
||||||
src = ../config/dwmblocks;
|
|
||||||
});
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# When applied, the unstable nixpkgs set (declared in the flake inputs) will
|
# When applied, the unstable nixpkgs set (declared in the flake inputs) will
|
||||||
|
|
Loading…
Reference in a new issue