Reshuffling stuff

This commit is contained in:
2026-03-18 18:05:51 +00:00
parent b60f4f71a3
commit 55a866e051
15 changed files with 28 additions and 28 deletions
@@ -0,0 +1,14 @@
{ pkgs, user, ... } :
{
environment.systemPackages = with pkgs; [
tuigreet
];
services.greetd = {
enable = true;
settings = {
default_session = {
command = pkgs.lib.mkForce "${pkgs.tuigreet}/bin/tuigreet --remember --time --time-format '%I:%M %p | %a %h | %F'";
};
};
};
}