20 lines
648 B
Nix
20 lines
648 B
Nix
# ==========================================
|
|
# DOTFILES — Symlink config files
|
|
# ==========================================
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Hyprland configuration
|
|
xdg.configFile."hypr/hyprland.conf".source = ../../config/hypr/hyprland.conf;
|
|
|
|
# Waybar
|
|
xdg.configFile."waybar/config.jsonc".source = ../../config/waybar/config.jsonc;
|
|
xdg.configFile."waybar/style.css".source = ../../config/waybar/style.css;
|
|
|
|
# Walker launcher
|
|
xdg.configFile."walker/config.toml".source = ../../config/walker/config.toml;
|
|
|
|
# Alacritty terminal
|
|
xdg.configFile."alacritty/alacritty.toml".source = ../../config/alacritty/alacritty.toml;
|
|
}
|