This repository has been archived on 2024-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config-tn/nixos/profiles/role-workstation.nix

76 lines
1.6 KiB
Nix
Raw Permalink Normal View History

2024-05-30 23:12:28 -05:00
{ config, lib, pkgs, ... }:
2024-03-24 07:21:13 -05:00
# Role for workstations
2024-05-10 10:06:16 -05:00
# Covers desktops/laptops, expected to have a GUI and do workloads
2024-03-24 07:21:13 -05:00
# Will have home-manager installs
2024-03-26 05:11:56 -05:00
with config;
2024-03-24 07:21:13 -05:00
{
2024-03-26 05:11:59 -05:00
mySystem = {
2024-03-25 06:51:18 -05:00
2024-03-26 05:11:59 -05:00
de.gnome.enable = true;
2024-03-31 05:40:20 -05:00
# Lets see if fish everywhere is OK on the pi's
# TODO decide if i drop to bash on pis?
shell.fish.enable = true;
2024-05-30 23:12:28 -05:00
# TODO make nfs server configurable
# nfs.nas = {
# enable = true;
# lazy = true;
# };
system.resticBackup.local.enable = false;
system.resticBackup.remote.enable = false;
2024-03-26 05:11:59 -05:00
};
2024-03-26 05:11:56 -05:00
boot = {
2024-03-24 07:21:13 -05:00
binfmt.emulatedSystems = [ "aarch64-linux" ]; # Enabled for raspi4 compilation
2024-03-25 06:51:18 -05:00
plymouth.enable = true; # hide console with splash screen
2024-03-24 07:21:13 -05:00
};
2024-03-26 05:11:56 -05:00
nix.settings = {
2024-03-24 07:21:13 -05:00
# TODO factor out into mySystem
# Avoid disk full issues
max-free = lib.mkDefault (1000 * 1000 * 1000);
min-free = lib.mkDefault (128 * 1000 * 1000);
};
2024-03-24 17:23:35 -05:00
# set xserver videodrivers if used
2024-03-26 05:11:56 -05:00
services.xserver.enable = true;
2024-03-24 07:21:13 -05:00
services = {
fwupd.enable = config.boot.loader.systemd-boot.enable; # fwupd does not work in BIOS mode
thermald.enable = true;
smartd.enable = true;
# required for yubikey
udev.packages = [ pkgs.yubikey-personalization ];
pcscd.enable = true;
};
hardware = {
enableAllFirmware = true;
sensor.hddtemp = {
enable = true;
drives = [ "/dev/disk/by-id/*" ];
};
};
environment.systemPackages = with pkgs; [
# Sensors etc
lm_sensors
cpufrequtils
cpupower-gui
vscode
vivaldi
2024-05-13 12:00:21 -05:00
termius
];
i18n = {
2024-05-10 10:06:16 -05:00
defaultLocale = lib.mkDefault "en_US.UTF-8";
};
2024-03-24 07:21:13 -05:00
programs.mtr.enable = true;
2024-03-24 07:21:13 -05:00
}