nixcfg/nixosModules/system/default.nix

160 lines
3.4 KiB
Nix
Raw Normal View History

2024-02-29 17:06:55 -05:00
{
2024-04-07 22:16:33 -04:00
config,
2024-06-08 22:34:08 -04:00
inputs,
2024-04-07 22:16:33 -04:00
lib,
2024-06-08 22:34:08 -04:00
pkgs,
2024-04-07 22:16:33 -04:00
...
}: {
2024-06-08 22:32:15 -04:00
imports = [./plymouth ./power-profiles-daemon ./zramSwap ./wifi.nix];
alyraffauf.system.power-profiles-daemon.enable = lib.mkDefault true;
2024-06-08 22:34:08 -04:00
environment.systemPackages = [inputs.agenix.packages.${pkgs.system}.default];
console = {
colors = [
"303446"
"e78284"
"a6d189"
"e5c890"
"8caaee"
"f4b8e4"
"81c8be"
"b5bfe2"
"626880"
"303446"
"e78284"
"a6d189"
"e5c890"
"8caaee"
"f4b8e4"
"81c8be"
"a5adce"
];
2024-05-27 21:39:30 -04:00
useXkbConfig = true;
};
time.timeZone = "America/New_York";
i18n = {
2024-05-27 21:39:30 -04:00
defaultLocale = lib.mkDefault "en_US.UTF-8";
extraLocaleSettings = {
LC_ADDRESS = config.i18n.defaultLocale;
LC_IDENTIFICATION = config.i18n.defaultLocale;
LC_MEASUREMENT = config.i18n.defaultLocale;
LC_MONETARY = config.i18n.defaultLocale;
LC_NAME = config.i18n.defaultLocale;
LC_NUMERIC = config.i18n.defaultLocale;
LC_PAPER = config.i18n.defaultLocale;
LC_TELEPHONE = config.i18n.defaultLocale;
LC_TIME = config.i18n.defaultLocale;
};
};
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
hardware = {
bluetooth.enable = true;
# Add support for logitech unifying receivers.
logitech.wireless = {
enable = true;
enableGraphical = true;
};
keyboard.qmk.enable = true;
pulseaudio = {
enable = lib.mkForce false;
package = pkgs.pulseaudioFull;
};
};
2024-03-11 18:37:01 -04:00
sound.enable = true;
networking = {
networkmanager.enable = true;
};
services = {
logind.extraConfig = ''
# Don't shutdown when power button is short-pressed
HandlePowerKey=suspend
HandlePowerKeyLongPress=poweroff
'';
pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
publish = {
enable = true;
addresses = true;
userServices = true;
workstation = true;
};
};
openssh = {
enable = true;
openFirewall = true;
};
printing.enable = true;
};
security = {
polkit.enable = true;
rtkit.enable = true;
};
2024-03-23 15:22:06 -04:00
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;
2024-03-29 07:41:04 -04:00
dates = "04:00";
2024-05-29 21:02:20 -04:00
randomizedDelaySec = "20min";
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 = {
optimise.automatic = true;
gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 3d";
2024-05-25 14:33:45 -04:00
persistent = true;
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 = {
auto-optimise-store = false;
2024-04-07 22:16:33 -04:00
experimental-features = ["nix-command" "flakes"];
2024-04-05 16:35:13 -04:00
substituters = [
"https://nixcache.raffauflabs.com"
2024-05-28 20:47:17 -04:00
"https://hyprland.cachix.org"
2024-04-05 16:35:13 -04:00
"https://cache.nixos.org/"
];
trusted-public-keys = [
"nixcache.raffauflabs.com:yFIuJde/izA4aUDI3MZmBLzynEsqVCT1OfCUghOLlt8="
2024-05-28 20:47:17 -04:00
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
];
};
};
2024-02-29 17:06:55 -05:00
}