33 lines
638 B
Nix
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;
|
|
};
|
|
|
|
}
|