homemanager symlink to hyprland

This commit is contained in:
2026-03-29 16:02:29 -05:00
parent f594fc4a30
commit 54175d546c

View File

@@ -1,5 +1,12 @@
{ config, pkgs, inputs, ... }:
let
dotfiles = "${config.home.homeDirectory}/.config";
create_symlink = path: config.lib.file.mkOutOfStoreSymlink path;
configs = {
hyprland = "hyprland";
};
in
{
home.username = "mrwafflecats";
@@ -39,5 +46,11 @@
programs.kitty.enable = true;
# wayland.windowManager.hyprland.enable = true;
#dotfiles
xdg.configFile = builtins.mapAttrs (name: subpath: {
source = create_symlink "${dotfiles}/hyprland";
recursive = true;
}) configs;
home.stateVersion = "25.11";
}