14 lines
370 B
Nix
14 lines
370 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
|
|
# include hyprland configs
|
|
home.file.".config/hypr/hyprland.conf".text = ''
|
|
source = ~/.config/hypr/executions.conf
|
|
source = ~/.config/hypr/general.conf
|
|
source = ~/.config/hypr/graphics.conf
|
|
source = ~/.config/hypr/input.conf
|
|
source = ~/.config/hypr/window_rules.conf
|
|
source = ~/.config/hypr/bindings.conf
|
|
'';
|
|
}
|