This commit is contained in:
Nico
2024-10-31 10:33:46 +01:00
commit ad6d893cb0
237 changed files with 19793 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{ pkgs, config, lib,... }:
{
home.packages = with pkgs; [
hyprland
swww
wl-clipboard
pulseaudio
];
home.file =
lib.mkMerge [
{
".config/hypr/hyprland.conf".source = ./hyprland.conf;
".config/hypr/keybinds.conf".source = ./keybinds.conf;
".config/hypr/rules.conf".source = ./rules.conf;
".config/hypr/setup.conf".source = ./setup.conf;
".config/hypr/startup.conf".source = ./startup.conf;
".config/hypr/colors.conf".source = ./colors.conf;
".config/hypr/theme.conf".source = ./theme.conf;
}
];
}