Moved hyprland config into NixOS configuration. Moved hyprcursor under hyprland config.
11 lines
189 B
Nix
11 lines
189 B
Nix
# Home configurations for Hyprland. For system configs, see ./hyprland
|
|
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hyprcursor
|
|
];
|
|
|
|
home.file.".config/hypr/hyprland.conf".source = ./hyprland.conf;
|
|
}
|