nixos-config/modules/hyprland.nix
2025-03-20 15:26:29 +00:00

26 lines
405 B
Nix

{ config, pkgs, ... }:
{
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
services.displayManager = {
enable = true;
defaultSession = "hyprland";
};
environment.systemPackages = with pkgs; [
alacritty # Terminal
brave # Browser
helix # Text editor
rustc cargo # Rust
go # Go
nodejs # Node.js
discord
spotify
bitwarden
];
}