dotfiles.nix/home-manager/sajenim/features/desktop/default.nix

31 lines
452 B
Nix
Raw Normal View History

2024-01-21 21:01:42 +08:00
{
2024-08-08 09:02:42 +08:00
inputs,
pkgs,
...
}: {
2024-01-21 21:01:42 +08:00
imports = [
2024-07-27 08:25:17 +08:00
./discord
2024-09-20 20:24:55 +08:00
./dunst
2024-11-09 08:12:55 +08:00
./cava
2024-09-20 20:24:55 +08:00
./irc
./mpd
./picom
2024-01-29 22:29:20 +08:00
./rofi
2024-07-27 08:25:17 +08:00
./wezterm
2024-01-21 21:01:42 +08:00
];
home.packages = with pkgs; [
feh
2024-09-20 20:24:55 +08:00
xmobar # custom build using xmobar-config
xmonad # custom build using xmonad-config
2024-01-21 21:01:42 +08:00
];
home.file = {
".local/share/fonts" = {
recursive = true;
source = "${inputs.self}/pkgs/patched-fonts";
};
".xinitrc".source = ./xinitrc;
};
}