1
0
Fork 0
nix-configuration/modules/roles/workstation.nix

35 lines
650 B
Nix
Raw Normal View History

2024-02-29 09:53:34 -05:00
{ config, lib, modulesPath, pkgs, ... }:
let
role = config.host.role;
in
with lib;
{
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;
};
environment.systemPackages = with pkgs; [
direnv
];
boot = {
# Enable Plymouth
plymouth.enable = true;
plymouth.theme = "bgrt";
# Increase minimum log level. This removes ACPI errors from the boot screen.
consoleLogLevel = 1;
# Add kernel parameters
kernelParams = [
"quiet"
];
};
};
}