Compare commits

...

2 Commits

Author SHA1 Message Date
Nina Chlóe Kassandra Reiß 3892be9175 Use hyprland lua flake instead of config directory 2026-07-26 12:41:32 +02:00
Nina Chlóe Kassandra Reiß 75e21a7463 Add hyprlua configuration 2026-07-26 12:24:08 +02:00
@@ -0,0 +1,44 @@
{ pkgs, lib, ... }:
let
hyprFlake = builtins.getFlake "git+https://git.nichkara.eu/system/hyprlua";
profile = import ../../profile.nix;
in
{
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 = "hyprlang";
extraConfig = "";
};
};
};
programs.waybar = {
enable = true;
};
xdg.configFile."hypr" = {
source = hyprFlake;
recursive = true;
};
}