From f540ad38bdeb47b2c32178ebbf4040f81a5992c9 Mon Sep 17 00:00:00 2001 From: Shahab Dogar Date: Tue, 4 Feb 2025 08:49:38 +0500 Subject: [PATCH] fix: NixOS | incorrect command for tuigreet --- nixos/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index eb383cc..8f87603 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -63,7 +63,7 @@ in enable = true; settings = { default_session = { - command = "${pkgs.greetd.tuigreet}/bin/tuigreet --greeting 'Welcome to NixOS!' --asterisks --remember --remember-user-session --time -cmd ${pkgs.hyprland}/bin/Hyprland"; + command = "${pkgs.greetd.tuigreet}/bin/tuigreet --greeting 'Welcome to NixOS!' --asterisks --remember --remember-user-session --time --cmd ${pkgs.hyprland}/bin/Hyprland"; user = "greeter"; }; };