41 lines
732 B
Nix
41 lines
732 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./bootloader.nix
|
|
./users.nix
|
|
./packages.nix
|
|
./services/ssh.nix
|
|
./services/sudo.nix
|
|
./hardware/hardware-configuration.nix
|
|
./hardware/audio.nix
|
|
./hardware/graphics.nix
|
|
./hardware/network.nix
|
|
./locale.nix
|
|
];
|
|
|
|
networking.hostName = "aqore-nix";
|
|
|
|
system.stateVersion = "25.05";
|
|
|
|
nix = {
|
|
settings = {
|
|
experimental-features = [ "nix-command" "flakes" ];
|
|
trusted-users = [ "root" "@wheel" ];
|
|
download-buffer-size = 524288000;
|
|
auto-optimise-store = true;
|
|
};
|
|
optimise = {
|
|
automatic = true;
|
|
dates = [ "weekly" ];
|
|
};
|
|
gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
};
|
|
};
|
|
|
|
virtualisation.docker.enable = true;
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
}
|