14 lines
448 B
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
|
|
'';
|
|
}
|