nixcfg/system/default.nix

91 lines
2.1 KiB
Nix
Raw Normal View History

2024-02-29 17:06:55 -05:00
{ config, pkgs, ... }:
{
2024-03-01 23:55:26 -05:00
imports =
2024-03-03 21:43:51 -05:00
[
2024-03-13 13:28:54 -04:00
./network.nix
./sound.nix
2024-03-01 23:55:26 -05:00
];
# Set your time zone.
time.timeZone = "America/New_York";
# Select internationalisation properties.
i18n = {
defaultLocale = "en_US.UTF-8";
extraLocaleSettings = {
LC_ADDRESS = "en_US.UTF-8";
LC_IDENTIFICATION = "en_US.UTF-8";
LC_MEASUREMENT = "en_US.UTF-8";
LC_MONETARY = "en_US.UTF-8";
LC_NAME = "en_US.UTF-8";
LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8";
};
};
hardware = {
# Enable Bluetooth connections.
bluetooth.enable = true;
# Add support for logitech unifying receivers.
logitech.wireless = {
enable = true;
enableGraphical = true;
};
# Add support for configuring QMK keyboards with Via.
keyboard.qmk.enable = true;
};
2024-03-11 18:37:01 -04:00
2024-03-23 15:22:06 -04:00
security.polkit.enable = true;
2024-02-29 17:06:55 -05:00
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
system.autoUpgrade = {
2024-03-12 21:52:11 -04:00
allowReboot = true;
dates = "daily";
enable = true;
flake = "github:alyraffauf/nixcfg";
2024-03-12 21:52:11 -04:00
operation = "boot";
rebootWindow = {
lower = "02:00";
upper = "05:00";
2024-03-15 09:36:01 -04:00
};
};
2024-02-29 17:06:55 -05:00
nix = {
gc = {
# Delete generations older than 7 days.
automatic = true;
dates = "daily";
options = "--delete-older-than 7d";
randomizedDelaySec = "60min";
};
# Run GC when there is less than 100MiB left.
extraOptions = ''
min-free = ${toString (100 * 1024 * 1024)}
max-free = ${toString (1024 * 1024 * 1024)}
'';
settings = {
# Automatically optimize the Nix store in the background.
auto-optimise-store = true;
# Enable experimental `nix` command and flakes.
experimental-features = [ "nix-command" "flakes" ];
substituters = [
"https://nixcache.raffauflabs.com"
"https://cache.nixos.org/"
];
trusted-public-keys = [
"nixcache.raffauflabs.com:yFIuJde/izA4aUDI3MZmBLzynEsqVCT1OfCUghOLlt8="
];
};
};
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
};
2024-02-29 17:06:55 -05:00
}