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

29 lines
383 B
Nix
Raw Normal View History

2024-01-21 21:01:42 +08:00
{ inputs, pkgs, ... }:
{
imports = [
2024-07-27 08:25:17 +08:00
./discord
2024-01-29 22:29:20 +08:00
./rofi
2024-07-27 08:25:17 +08:00
./wezterm
./email.nix
./irc.nix
./mpd.nix
2024-01-21 21:01:42 +08:00
./picom.nix
];
home.packages = with pkgs; [
feh
2024-07-27 22:35:40 +08:00
xmobar
xmonad
2024-01-21 21:01:42 +08:00
];
home.file = {
".local/share/fonts" = {
recursive = true;
source = "${inputs.self}/pkgs/patched-fonts";
};
".xinitrc".source = ./xinitrc;
};
}