config/base.nix

95 lines
3.2 KiB
Nix
Raw Normal View History

{ config, pkgs, lib, inputs, ... }:
2024-02-11 02:08:03 +01:00
2023-02-25 04:39:30 +01:00
{
2024-01-27 03:47:28 +01:00
imports = let ifExists = p: if builtins.pathExists p then p else {}; in [
2023-06-19 02:44:40 +02:00
./cachix.nix # update with `cachix use --mode nixos -d . FOOBAR`
./profiles/locale-no.nix
2024-02-11 05:00:48 +01:00
./profiles/upgrade-diff.nix
2024-07-10 00:36:50 +02:00
./profiles/lix.nix
2023-03-12 05:14:28 +01:00
# results of 'nixos-generate-config'
# nice to have if i just dump this flake into /etc/nixos on a clean install
2024-01-27 03:47:28 +01:00
(ifExists ./configuration.nix )
(ifExists ./hardware-configuration.nix )
2023-02-25 04:39:30 +01:00
];
2024-07-10 00:31:00 +02:00
nixpkgs.overlays = [ (import ./overlay.nix) ];
2023-11-10 22:54:07 +01:00
nixpkgs.config.permittedInsecurePackages = [
2024-06-07 18:26:44 +02:00
pkgs.pulsar.name
pkgs.zotero.name
pkgs.gitea.name
2023-11-10 22:54:07 +01:00
];
2023-06-29 02:16:16 +02:00
environment.systemPackages = with pkgs; [
ddrescue
gptfdisk
ms-sys
nvme-cli
parted
pciutils
smartmontools
testdisk
usbutils
2024-02-11 05:00:48 +01:00
] ++ lib.optionals (builtins.elem config.nixpkgs.system [ "x86_64-linux" "aarch64_linux"]) [
2024-02-10 22:11:25 +01:00
cage
weston
2023-06-29 02:16:16 +02:00
];
2024-02-17 03:49:30 +01:00
# TODO: selectively whitelist
2023-02-25 04:39:30 +01:00
nixpkgs.config.allowUnfree = true;
nixpkgs.config.allowUnfreePredicate = (pkg: true);
2023-03-03 02:24:07 +01:00
nixpkgs.config.nonfreeLicensing = true; # used by ffmpeg
2023-02-25 04:39:30 +01:00
2023-07-09 00:10:03 +02:00
hardware.enableRedistributableFirmware = true;
2024-06-24 12:23:09 +02:00
sops.secrets.nix-access-tokens.mode = "0440";
sops.secrets.nix-access-tokens.group = config.users.groups.keys.name;
nix.extraOptions = ''
!include ${config.sops.secrets.nix-access-tokens.path}
'';
2023-06-24 19:11:49 +02:00
nix.settings.experimental-features = [
"nix-command"
"flakes"
2023-02-26 21:15:08 +01:00
];
2024-07-31 21:47:36 +02:00
#nix.settings.allowed-users = [ "@builders" ]; # TODO: this
nix.settings.allowed-users = [ "root" "pbsds" "@wheel" ]; # default is [ "*" ]
nix.settings.trusted-users = [ "root" "pbsds" "@wheel" ];
2024-08-03 21:12:13 +02:00
nix.settings.keep-derivations = true; # keep .drv in store, great with nix-diff
2023-02-25 04:39:30 +01:00
nix.settings.auto-optimise-store = true; # deduplicate with hardlinks, expensive. Alternative: nix-store --optimise
2024-06-16 13:25:03 +02:00
nix.settings.max-silent-time = 3600;
2024-08-03 21:12:13 +02:00
#nix.settings.keep-failed = true; # fills up $TMPDIR
nix.settings.log-lines = 35;
2024-06-06 21:31:22 +02:00
#nix.optimize.automatic = true; # periodic optimization
2023-02-25 04:39:30 +01:00
nix.gc.automatic = true;
nix.gc.dates = "weekly";
2024-06-15 20:34:46 +02:00
nix.gc.options = lib.mkIf config.system.autoUpgrade.enable "--delete-older-than 15d";
2024-02-26 11:03:25 +01:00
nix.settings.min-free = 3 * 1024 * 1024 * 1024;
nix.settings.max-free = 20 * 1024 * 1024 * 1024;
2023-02-25 04:39:30 +01:00
2024-08-10 23:57:31 +02:00
services.thermald.enable = lib.mkIf (lib.all (x: x) [
(config.nixpkgs.system == "x86_64-linux")
(!config.boot.isContainer or false)
]) true;
2023-02-25 04:39:30 +01:00
2023-10-14 18:23:24 +02:00
# System fonts
# Nice to have when X-forwading on headless machines
fonts.fontDir.enable = true; # creates /run/current-system/sw/share/X11/fonts
2024-02-18 22:14:40 +01:00
fonts.enableDefaultPackages = true; # dejavu, freefont, gyre, liberation, unifont, noto-fonts-emoji
fonts.packages = with pkgs; [
2023-10-14 18:23:24 +02:00
noto-fonts # includes Cousine
noto-fonts-cjk
noto-fonts-emoji
noto-fonts-extra
];
2023-02-25 04:39:30 +01:00
networking.firewall.enable = true; # default
2024-02-26 11:03:25 +01:00
# https://discourse.nixos.org/t/what-to-do-with-a-full-boot-partition/2049
2024-07-08 22:30:11 +02:00
# raise to 15 if auto upgrading
boot.loader.grub.configurationLimit = lib.mkDefault 5;
boot.loader.systemd-boot.configurationLimit = lib.mkDefault 5;
boot.loader.raspberryPi.uboot.configurationLimit = lib.mkDefault 5;
boot.loader.generic-extlinux-compatible.configurationLimit = lib.mkDefault 5;
2023-02-25 04:39:30 +01:00
}