nixcfg/home/nomad/dotfiles/default.nix
2024-10-08 23:02:31 +03:00

33 lines
638 B
Nix

{ inputs, pkgs, ... }: {
imports = [
./bat.nix
./dunst.nix
];
home.file.".config/nvim" = {
source = "${inputs.dotfiles}/nvim";
recursive = true;
};
home.file.".config/hypr/scripts" = {
source = "${inputs.dotfiles}/scripts";
recursive = true;
};
home.file.".config/hypr" = {
source = pkgs.symlinkJoin {
name = "hypr-config";
paths = [
"${inputs.dotfiles}/hypr/hyprlock/Style-2"
"${inputs.dotfiles}/hypr/hyprpaper"
];
};
recursive = true;
};
home.file.".config/wlogout/" = {
source = "${inputs.dotfiles}/wlogout";
recursive = true;
};
}