nix-dotfiles/nixosModules/services/waylandcompositors/service.nix

24 lines
525 B
Nix
Raw Normal View History

{ inputs, config, lib, ... }:
2024-04-07 17:08:48 -07:00
{
2024-04-09 00:00:42 -07: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" ];
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
};
}