30 lines
521 B
Nix
30 lines
521 B
Nix
# Wayland home.nix
|
|
{ config, lib, pkgs, inputs, user, ... }:
|
|
{
|
|
imports = [
|
|
./gui.nix
|
|
];
|
|
xdg.configFile = {
|
|
"foot" = {
|
|
source = ./dots/foot;
|
|
target = "foot";
|
|
recursive = true;
|
|
};
|
|
"mako" = {
|
|
source = ./dots/mako;
|
|
target = "mako";
|
|
recursive = true;
|
|
};
|
|
"river" = {
|
|
source = ./dots/river;
|
|
target = "river";
|
|
recursive = true;
|
|
};
|
|
"waybar" = {
|
|
source = ./dots/waybar;
|
|
target = "waybar";
|
|
recursive = true;
|
|
};
|
|
};
|
|
}
|