nix-config/hosts/laptop1/home.nix

30 lines
526 B
Nix

{ config, pkgs, inputs, ... }:
{
imports =
[
../common/home.nix
];
home.packages = [
];
home.file = {
".config/hypr" = {
source = builtins.toPath ../../dotfiles/hypr-lap;
recursive = true;
force = true;
};
".config/waybar" = {
source = builtins.toPath ../../dotfiles/waybar-lap;
recursive = true;
force = true;
};
".config/wlogout" = {
source = builtins.toPath ../../dotfiles/wlogout-lap;
recursive = true;
force = true;
};
};
}