Add files via upload

This commit is contained in:
ediblerope 2025-08-13 09:16:00 +01:00 committed by GitHub
parent 9a901cb6b7
commit d167bc68a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 263 additions and 123 deletions

20
modules/hyprland.nix Normal file
View file

@ -0,0 +1,20 @@
{ config, lib, pkgs, ... }:
{
programs.hyprland= {
enable = true; # enable Hyprland
xwayland.enable = true;
};
environment.systemPackages = with pkgs; [
wofi
hyprpaper
waybar
hyprlock
kitty
libnotify
swaynotificationcenter
nerd-fonts.zed-mono
];
}