fix hyprland incorrect bindings

This commit is contained in:
kenji
2025-12-23 22:58:54 +00:00
parent e4e90059e3
commit c4639d88c5
5 changed files with 152 additions and 11 deletions
+23 -2
View File
@@ -1,8 +1,29 @@
{pkgs, ...}: {
{
pkgs,
myConfig,
...
}: {
services = {
greetd = {
enable = true;
settings = {
initial_session = {
command = "${pkgs.hyprland}/bin/Hyprland";
user = "${myConfig.nixos.username}";
};
default_session = {
command = "${pkgs.tuigreet}/bin/tuigreet --time --remember --cmd Hyprland";
};
};
};
# essentials
openssh.enable = true;
openssh.enable = true; # FIXME: remove when done
blueman.enable = true;
# for encryption support for unfree apps
gnome.gnome-keyring.enable = true;
# Complements printer support
printing.enable = true;
avahi = {