Martin Berg Alstad bd2f725029
🪛 Comments, git safe dir, moved nixvim import
- Moved nixvim import to nixvim directory
- Added git safe directory to /etc/nixos
2025-02-02 13:16:51 +01:00

23 lines
554 B
Nix

# System configurations for Hyprland. For home configs, see ./home-manager/hyprland
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
xdg-desktop-portal-hyprland
hyprpolkitagent # Auth deamon providing modals for password auth
hyprshot # Screenshots
# unstable.hyprsysteminfo TODO requires flake update
];
programs = {
hyprland = {
enable = true;
xwayland.enable = true;
withUWSM = true;
};
hyprlock.enable = true; # Lock screen
};
services.hypridle.enable = true; # Lock when unused
}