1
Fork 0
This commit is contained in:
Matei Adriel 2022-12-09 02:32:25 +01:00
commit 01e4fe7095
22 changed files with 102 additions and 122 deletions
modules/applications/xmonad

View file

@ -1,29 +0,0 @@
{ pkgs, ... }: {
home-manager.users.adrielus = {
# xsession.windowManager.xmonad = {
# enable = true;
# enableContribAndExtras = true;
# config = ./Main.hs;
# };
home.packages = with pkgs; [ xwallpaper ];
# Tell KDE to use xmonad
# home.file.".config/plasma-workspace/env/set_window_manager.sh".text =
# "export KDEWM=/home/adrielus/.nix-profile/bin/xmonad";
services.picom = {
enable = false;
blur = true;
shadow = false;
extraOptions = ''
blur:
{
method = "gaussian";
size = 10;
deviation = 5.0;
};
'';
};
};
}