Hello, World!

This commit is contained in:
Weckyy702
2026-01-10 17:32:29 +01:00
commit d8374cb12b
4 changed files with 135 additions and 0 deletions

20
desktop.nix Normal file
View File

@@ -0,0 +1,20 @@
{ config, pkgs, ...}: {
# Configure keymap in X11
services.xserver.xkb = {
layout = "de";
variant = "";
};
programs.regreet = {
enable = true;
};
programs.hyprland = {
enable = true;
withUWSM = true;
xwayland.enable = true;
};
programs.hyprlock.enable = true;
# Configure electron apps to use wayland
environment.sessionVariables.NIXOS_OZONE_WL = "1";
}