2024-05-07 18:02:59 -04:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
modulesPath,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2024-02-29 09:53:34 -05:00
|
|
|
let
|
2024-05-07 18:02:59 -04:00
|
|
|
inherit (config.host) role;
|
2024-02-29 09:53:34 -05:00
|
|
|
in
|
2024-05-07 18:02:59 -04:00
|
|
|
with lib;
|
2024-02-29 09:53:34 -05:00
|
|
|
{
|
2024-05-07 18:02:59 -04:00
|
|
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
|
|
|
|
|
|
|
config = mkIf (role == "workstation") {
|
|
|
|
host.ui = {
|
|
|
|
audio.enable = true;
|
|
|
|
bluetooth.enable = true;
|
|
|
|
gnome.enable = true;
|
|
|
|
flatpak.enable = true;
|
|
|
|
};
|
2024-02-29 09:53:34 -05:00
|
|
|
|
2024-05-07 18:02:59 -04:00
|
|
|
boot = {
|
|
|
|
# Enable Plymouth
|
|
|
|
plymouth.enable = true;
|
|
|
|
plymouth.theme = "bgrt";
|
2024-02-29 09:53:34 -05:00
|
|
|
|
2024-05-07 18:02:59 -04:00
|
|
|
# Increase minimum log level. This removes ACPI errors from the boot screen.
|
|
|
|
consoleLogLevel = 1;
|
2024-02-29 09:53:34 -05:00
|
|
|
|
2024-05-07 18:02:59 -04:00
|
|
|
# Add kernel parameters
|
|
|
|
kernelParams = [ "quiet" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|