diff --git a/home.nix b/home.nix index 370d070..21bf6c9 100644 --- a/home.nix +++ b/home.nix @@ -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"; }