25 lines
506 B
Nix
25 lines
506 B
Nix
{ config, lib, pkgs, imports, boot, ... }:
|
|
# Role for workstations
|
|
# Covers desktops/laptops, expected to have a GUI and do worloads
|
|
# Will have home-manager installs
|
|
|
|
with lib;
|
|
{
|
|
boot = {
|
|
|
|
binfmt.emulatedSystems = [ "aarch64-linux" ]; # Enabled for raspi4 compilation
|
|
plymouth.enable = true;
|
|
};
|
|
|
|
nix.settings = {
|
|
# TODO factor out into mySystem
|
|
# Avoid disk full issues
|
|
max-free = lib.mkDefault (1000 * 1000 * 1000);
|
|
min-free = lib.mkDefault (128 * 1000 * 1000);
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|