18 lines
435 B
Nix
Executable File
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";
|
|
};
|
|
}
|