22 lines
865 B
Nix
22 lines
865 B
Nix
|
|
{ config, pkgs, lib, ... }:
|
||
|
|
{
|
||
|
|
programs.hyprland = {
|
||
|
|
enable = true;
|
||
|
|
withUWSM = true; # recommended for most users
|
||
|
|
xwayland.enable = true; # Xwayland can be disabled.
|
||
|
|
};
|
||
|
|
services.greetd = {
|
||
|
|
enable = true;
|
||
|
|
settings = {
|
||
|
|
default_session = {
|
||
|
|
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd hyprland";
|
||
|
|
user = "alisceon";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
environment.systemPackages = with
|
||
|
|
pkgs; [
|
||
|
|
kitty
|
||
|
|
];
|
||
|
|
}
|