32 lines
510 B
Nix
32 lines
510 B
Nix
{
|
|
description = "Hyprland Config";
|
|
|
|
inputs = {
|
|
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
|
|
};
|
|
|
|
outputs = { self, ... }@inputs: {
|
|
|
|
hmModule = { config, lib, pkgs, ... }: {
|
|
|
|
home.sessionVariables.NIX_OZONE_WL = "1";
|
|
|
|
programs.kitty.enable = lib.mkDefault true;
|
|
|
|
home.packages = with pkgs; [
|
|
pyprland
|
|
];
|
|
|
|
wayland.windowManager.hyprland = {
|
|
|
|
enable = true;
|
|
|
|
systemd.variables = [ "--all" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
}
|