chore: reorganise modules

This commit is contained in:
Nico 2025-05-03 16:15:58 +10:00
parent 0662d79447
commit 292dfcfccd
10 changed files with 31 additions and 23 deletions

View file

@ -0,0 +1,28 @@
{ config, lib, pkgs, self, ... }:
{
programs.hyprland.enable = true;
# Optional, hint electron apps to use wayland:
environment.sessionVariables.NIXOS_OZONE_WL = "1";
# have portals
xdg.portal.enable = true;
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
programs.hyprlock.enable = true;
environment.systemPackages = with pkgs; [
kitty
waybar
swww
grim
slurp
wl-clipboard
brightnessctl
helvum
ulauncher
playerctl
swaynotificationcenter
flameshot
];
}