This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-nix/nix/home/hyprland/hyprland.nix

14 lines
448 B
Nix

{ config, pkgs, ... }:
{
# include hyprland configs
home.file.".config/hypr/hyprland.conf".text = ''
source = ~/.dotfiles/hyprland/conf.d/executions.conf
source = ~/.dotfiles/hyprland/conf.d/general.conf
source = ~/.dotfiles/hyprland/conf.d/graphics.conf
source = ~/.dotfiles/hyprland/conf.d/input.conf
source = ~/.dotfiles/hyprland/conf.d/window_rules.conf
source = ~/.dotfiles/hyprland/conf.d/bindings.conf
'';
}