11 lines
161 B
Nix
11 lines
161 B
Nix
{ inputs, pkgs, ... }: {
|
|
programs.hyprland = {
|
|
enable = true;
|
|
};
|
|
|
|
services.xserver = {
|
|
enable = true;
|
|
excludePackages = [ pkgs.xterm ];
|
|
};
|
|
}
|