chore: rename nixos to linux

This commit is contained in:
Youwen Wu 2024-08-24 03:52:45 -07:00
parent 26aa04552c
commit cbcb9467d6
Signed by: youwen
GPG key ID: 865658ED1FE61EC3
11 changed files with 18 additions and 20 deletions

View file

@ -0,0 +1,22 @@
{pkgs, ...}: {
services.greetd = {
enable = true;
settings = {
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd Hyprland --remember --greeting 'Welcome to liminalOS. Access is restricted to authorized personnel only.'";
user = "greeter";
};
};
};
systemd.services.greetd.serviceConfig = {
Type = "idle";
StandardInput = "tty";
StandardOutput = "tty";
StandardError = "journal"; # Without this errors will spam on screen
# Without these bootlogs will spam on screen
TTYReset = true;
TTYVHangup = true;
TTYVTDisallocate = true;
};
}