Files
Olympus/modules/users/nathan/home-manager/dotfiles/default.nix
2026-04-22 13:27:21 -05:00

14 lines
606 B
Nix

{ ... }: {
flake.homeModules.nathan = { config, lib, pkgs, ... }: {
home.file = {
".config/hypr" = lib.mkIf config.wayland.windowManager.hyprland.enable { source = ./hypr; recursive = true; };
".config/wal/templates" = lib.mkIf (builtins.any (x: x == pkgs.pywal16) config.home.packages) { source = ./wal/templates; recursive = true; };
".config/ohmyposh" = { source = ./ohmyposh; recursive = true; };
"Pictures/Wallpaper" = lib.mkIf config.wayland.windowManager.hyprland.enable { source = ./Wallpaper; recursive = true; };
};
};
}