Files
nix-config/systems/x86_64-linux/desktop/specialisations/hyprland/default.nix
mjallen18 d6e7be7db1 cleanup
2025-08-22 21:13:05 -05:00

18 lines
435 B
Nix
Executable File

{ lib, namespace, ... }:
{
specialisation.hyprland.inheritParentConfig = true;
specialisation.hyprland.configuration = {
home-manager.users.matt = import ./home/default.nix;
${namespace} = {
desktop = {
hyprland = {
enable = true;
wallpaperSource = "nasa";
};
gnome.enable = lib.mkForce false;
};
};
environment.etc."specialisation".text = "hyprland";
};
}