nix-dotfiles/nixosModules/services/graphics/wayland_compositors/default.nix

22 lines
515 B
Nix
Raw Normal View History

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