2024-11-28 23:48:40 -08:00
|
|
|
{ inputs, config, lib, ... }:
|
2024-04-07 17:08:48 -07:00
|
|
|
|
|
|
|
|
{
|
2024-04-09 00:00:42 -07:00
|
|
|
|
2024-11-28 23:48:40 -08:00
|
|
|
options.hyprland = {
|
|
|
|
|
enable = lib.mkEnableOption "Enables hyprland";
|
2024-04-07 17:08:48 -07:00
|
|
|
};
|
|
|
|
|
|
2024-04-09 00:00:42 -07:00
|
|
|
imports = [
|
|
|
|
|
inputs.hyprland.nixosModules.default
|
|
|
|
|
];
|
|
|
|
|
|
2024-07-14 04:04:58 -07:00
|
|
|
config = {
|
2024-04-07 17:08:48 -07:00
|
|
|
nix.settings = {
|
|
|
|
|
substituters = [ "https://hyprland.cachix.org" ];
|
2024-11-28 23:48:40 -08:00
|
|
|
trusted-public-keys = [
|
|
|
|
|
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
|
|
|
|
|
];
|
2024-04-07 17:08:48 -07:00
|
|
|
experimental-features = [ "nix-command" "flakes" ];
|
|
|
|
|
};
|
2024-07-14 04:04:58 -07:00
|
|
|
programs.hyprland.enable = lib.mkIf config.hyprland.enable true;
|
2024-04-07 17:08:48 -07:00
|
|
|
};
|
|
|
|
|
}
|