17 lines
287 B
Nix
17 lines
287 B
Nix
{ 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
|
|
'';
|
|
}
|