feat: improvements

This commit is contained in:
2024-04-02 17:00:44 +02:00
parent a8278c6173
commit 8e826a066d
3 changed files with 4 additions and 4 deletions

View File

@@ -74,8 +74,6 @@
"audio"
"video"
"plugdev"
"scanner"
"lp"
"input"
"adbusers"
"cdrom"

View File

@@ -14,12 +14,13 @@ in {
systemd-boot.consoleMode = "max";
};
plymouth.enable = true;
kernelParams = [
# Redirect all kernel messages to a console off screen
#"fbcon=vc:2-6"
#"console=tty1"
"video=3840x2160@144"
"splash"
"quiet"

View File

@@ -1,4 +1,4 @@
{ pkgs, lib, config, ... }:
{ pkgs, lib, config, username, ... }:
with lib;
let cfg = config.services.airprint;
@@ -19,5 +19,6 @@ in {
nssmdns4 = true;
openFirewall = true;
};
users.users.${username}.extraGroups = [ "lp" "scanner" ];
};
}