Files
home-manager/desktop-environment/window-manager/hyprlua.nix
T
Nina Chlóe Kassandra Reiß ab0d3e116a Select correct config type
2026-07-26 15:15:51 +02:00

44 lines
691 B
Nix

{ pkgs, lib, ... }:
let
hyprFlake = builtins.getFlake "git+https://git.nichkara.eu/system/hyprlua";
profile = import ../../profile.nix;
in
{
imports = [
hyprFlake.homeManagerModules.default
];
home.packages = with pkgs; [
wofi
grim
swaynotificationcenter
swaylock
hyprpaper
lxsession
hyprshot
wayvnc
pamixer
pavucontrol
brightnessctl
python313Packages.requests
networkmanagerapplet
];
wayland = {
windowManager = {
hyprland = {
enable = true;
xwayland.enable = true;
configType = "lua";
extraConfig = "";
};
};
};
programs.waybar = {
enable = true;
};
}