21 lines
439 B
Nix
21 lines
439 B
Nix
{
|
|
lib,
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
nix.settings = {
|
|
substituters = [ "https://hyprland.cachix.org" ];
|
|
trusted-public-keys = [
|
|
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIITfGmwGaMwaOAd6DDeaU="
|
|
];
|
|
};
|
|
|
|
security.wrappers.Hyprland = {
|
|
owner = "root";
|
|
group = "root";
|
|
capabilities = "cap_sys_nice+ep";
|
|
source = lib.getExe inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
|
|
};
|
|
}
|