mirror of
https://github.com/danbulant/dotfiles
synced 2026-09-17 13:23:51 +00:00
52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
{
|
|
# Link individual files instead of whole directories. This leaves room for
|
|
# applications such as DMS to generate additional files next to the managed
|
|
# Hyprland and Kitty configuration.
|
|
xdg.configFile = {
|
|
"activitywatch" = {
|
|
source = ../../.config/activitywatch;
|
|
recursive = true;
|
|
};
|
|
"carapace" = {
|
|
source = ../../.config/carapace;
|
|
recursive = true;
|
|
};
|
|
"fish" = {
|
|
source = ../../.config/fish;
|
|
recursive = true;
|
|
};
|
|
"hypr" = {
|
|
source = ../../.config/hypr;
|
|
recursive = true;
|
|
};
|
|
"kitty" = {
|
|
source = ../../.config/kitty;
|
|
recursive = true;
|
|
};
|
|
"mpv" = {
|
|
source = ../../.config/mpv;
|
|
recursive = true;
|
|
};
|
|
"nushell" = {
|
|
source = ../../.config/nushell;
|
|
recursive = true;
|
|
};
|
|
"oh-my-posh/config.toml".source = ../../.config/oh-my-posh/config.toml;
|
|
"opencode" = {
|
|
source = ../../.config/opencode;
|
|
recursive = true;
|
|
};
|
|
"rofi" = {
|
|
source = ../../.config/rofi;
|
|
recursive = true;
|
|
};
|
|
"zed" = {
|
|
source = ../../.config/zed;
|
|
recursive = true;
|
|
};
|
|
};
|
|
|
|
home.file = {
|
|
".oh-my-posh.nu".source = ../../.oh-my-posh.nu;
|
|
};
|
|
}
|