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

28 lines
375 B
Nix

{ inputs, pkgs, ... }:
{
imports = [
./awesome
./discord
./rofi
./wezterm
./email.nix
./irc.nix
./mpd.nix
./picom.nix
];
home.packages = with pkgs; [
feh
];
home.file = {
".local/share/fonts" = {
recursive = true;
source = "${inputs.self}/pkgs/patched-fonts";
};
".xinitrc".source = ./xinitrc;
};
}