dotfiles.nix/home-manager/sajenim/features/desktop/jade/default.nix
2024-01-29 22:29:20 +08:00

34 lines
574 B
Nix

{ inputs, pkgs, ... }:
{
imports = [
./rofi
./picom.nix
];
home.packages = with pkgs; [
feh
xmobar
unstable.wezterm
];
home.file = {
".local/share/fonts" = {
recursive = true;
source = "${inputs.self}/pkgs/patched-fonts";
};
".xinitrc".source = ./xinitrc;
};
xdg.configFile = {
wezterm = { source = ./wezterm/config; recursive = true; };
};
xsession.windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
config = "${inputs.self}/pkgs/xmonad-config/src/xmonad.hs";
};
}