26 lines
583 B
Nix
26 lines
583 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./modules/amnezia.nix
|
|
./modules/security.nix
|
|
./modules/memory.nix
|
|
./modules/fonts.nix
|
|
./modules/boot.nix
|
|
./modules/programs.nix
|
|
./modules/networking.nix
|
|
./modules/power.nix
|
|
];
|
|
|
|
programs.ssh.startAgent = true;
|
|
# services.gnome.gnome-keyring.enable = lib.mkForce false;
|
|
services.gnome.gcr-ssh-agent.enable = lib.mkForce false;
|
|
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
nix.gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 14d";
|
|
};
|
|
}
|