Files
nix-config/nixos/hypr.nix
Weckyy702 0524def0ad WIP
2026-01-12 11:23:10 +01:00

20 lines
316 B
Nix

{pkgs, username, ...}: {
# enable auto-login
#TODO: this should be optional
services.getty.autologinUser = username;
programs.hyprland = {
enable = true;
xwayland.enable = true;
withUWSM = true;
};
programs.hyprlock.enable = true;
environment.systemPackages = with pkgs; [
kitty
hyprpaper
];
}