31 lines
526 B
Nix
31 lines
526 B
Nix
{ config, pkgs, inputs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
../common/home.nix
|
|
];
|
|
|
|
home.packages = [
|
|
];
|
|
|
|
home.file = {
|
|
".config/hypr" = {
|
|
source = builtins.toPath ../../dotfiles/hypr-desk;
|
|
recursive = true;
|
|
force = true;
|
|
};
|
|
".config/waybar" = {
|
|
source = builtins.toPath ../../dotfiles/waybar-desk;
|
|
recursive = true;
|
|
force = true;
|
|
};
|
|
".config/wlogout" = {
|
|
source = builtins.toPath ../../dotfiles/wlogout-desk;
|
|
recursive = true;
|
|
force = true;
|
|
};
|
|
};
|
|
|
|
}
|