29 lines
498 B
Nix
29 lines
498 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
programs.hyprland = {
|
|
enable = true;
|
|
withUWSM = true;
|
|
# xwayland.enable = true;
|
|
};
|
|
|
|
# programs.regreet = {
|
|
# enable = true;
|
|
# # For this example you'd need to have a version of Adwaita and the font Cantarell installed
|
|
# theme.name = "Adwaita";
|
|
# font = {
|
|
# name = "Cantarell";
|
|
# size = 16;
|
|
# };
|
|
# cursorTheme.name = "Adwaita";
|
|
# };
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
ashell
|
|
kitty
|
|
mako
|
|
tofi
|
|
];
|
|
|
|
}
|