confix/home-manager/wayland.nix

20 lines
322 B
Nix

# Wayland home.nix
{ config, lib, pkgs, inputs, user, ... }:
{
imports = [
./gui.nix
];
xdg.configFile = {
"hyprland" = {
source = ./dots/hypr;
target = "hypr";
recursive = true;
};
"foot" = {
source = ./dots/foot;
target = "foot";
recursive = true;
};
};
}