17 lines
289 B
Nix
17 lines
289 B
Nix
# Wayland home.nix
|
|
{ config, lib, pkgs, inputs, user, ... }:
|
|
{
|
|
xdg.configFile = {
|
|
"hyprland" = {
|
|
source = ./dots/hypr;
|
|
target = "hypr";
|
|
recursive = true;
|
|
};
|
|
"foot" = {
|
|
source = ./dots/foot;
|
|
target = "foot";
|
|
recursive = true;
|
|
};
|
|
};
|
|
}
|