2023-05-06 23:25:15 +05:30
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
2023-05-10 02:43:32 +05:30
|
|
|
{
|
2023-05-15 07:09:34 +05:30
|
|
|
|
|
|
|
imports = [ ../picom/picom.nix ];
|
|
|
|
|
2023-05-10 02:43:32 +05:30
|
|
|
home.file.".config/xmonad/xmonad.hs".source = ./xmonad.hs;
|
|
|
|
home.file.".config/xmonad/startup.sh".source = ./startup.sh;
|
2023-05-17 05:42:50 +05:30
|
|
|
|
|
|
|
home.file.".config/xmonad/lib/Colors/Stylix.hs".source = config.lib.stylix.colors {
|
|
|
|
template = builtins.readFile ./lib/Colors/Stylix.hs.mustache;
|
|
|
|
extension = ".hs";
|
|
|
|
};
|
|
|
|
|
2023-05-17 06:14:57 +05:30
|
|
|
home.file.".config/xmobar/xmobarrc".source = config.lib.stylix.colors {
|
|
|
|
template = builtins.readFile ./xmobarrc.mustache;
|
|
|
|
extension = "";
|
|
|
|
};
|
|
|
|
|
2023-05-17 05:42:50 +05:30
|
|
|
home.packages = with pkgs; [
|
|
|
|
xmobar
|
|
|
|
dunst
|
|
|
|
];
|
2023-05-10 02:43:32 +05:30
|
|
|
}
|