nixos_config/modules/common.nix

18 lines
287 B
Nix
Raw Normal View History

2025-07-20 17:46:39 +02:00
{ pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
security.rtkit.enable = true;
services.gnome.gnome-keyring.enable = true;
environment.variables.EDITOR = "nano";
nix.settings.auto-optimise-store = true;
systemd.extraConfig = ''
DefaultTimeoutStopSec=10s
'';
}