2023-05-15 21:11:30 +08:00
|
|
|
{ inputs, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2023-07-10 07:15:32 +08:00
|
|
|
imports = [
|
|
|
|
./picom.nix
|
|
|
|
];
|
2023-05-15 21:11:30 +08:00
|
|
|
|
|
|
|
nixpkgs.overlays = [
|
|
|
|
(final: prev: {
|
|
|
|
xmobar = inputs.xmobar-config.packages.${pkgs.system}.xmobar-config;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
dmenu
|
|
|
|
feh
|
|
|
|
unstable.wezterm
|
|
|
|
xmobar
|
|
|
|
];
|
|
|
|
|
|
|
|
xsession.windowManager.xmonad = {
|
|
|
|
enable = true;
|
|
|
|
enableContribAndExtras = true;
|
2023-07-07 22:24:26 +08:00
|
|
|
config = ./xmonad/src/xmonad.hs;
|
2023-05-15 21:11:30 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
home.file.".xinitrc".source = ./xinitrc;
|
|
|
|
|
|
|
|
xdg.configFile = {
|
|
|
|
wezterm = { source = ./wezterm; recursive = true; };
|
|
|
|
};
|
|
|
|
}
|