added aqore-nix & changed nginx settings ebat ego v rot
This commit is contained in:
parent
032a5f4b04
commit
7e2f7a341a
24 changed files with 573 additions and 90 deletions
41
desktops/aqore-nix/main.nix
Normal file
41
desktops/aqore-nix/main.nix
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{ 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue