Gutterman: init
This commit is contained in:
parent
91d76c8c83
commit
71a9e2a9ff
2 changed files with 35 additions and 0 deletions
|
|
@ -54,6 +54,7 @@
|
|||
Earthmover = mkHost "Earthmover";
|
||||
Drone = mkHost "Drone";
|
||||
Mindflayer = mkHost "Mindflayer";
|
||||
Gutterman = mkHost "Gutterman";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
34
hosts/Gutterman/default.nix
Normal file
34
hosts/Gutterman/default.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{ config, modulesPath, lib, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
(modulesPath + "/virtualisation/proxmox-lxc.nix")
|
||||
|
||||
../../modules/common
|
||||
|
||||
../../modules/nixos/programs/bash.nix
|
||||
../../modules/nixos/programs/git.nix
|
||||
|
||||
../../modules/nixos/services/openssh.nix
|
||||
|
||||
../../modules/nixos/system/headless.nix
|
||||
../../modules/nixos/system/minimal.nix
|
||||
];
|
||||
|
||||
proxmoxLXC = {
|
||||
manageNetwork = false;
|
||||
privileged = true;
|
||||
};
|
||||
|
||||
boot.loader.systemd-boot.enable = lib.mkForce false;
|
||||
|
||||
services.fstrim.enable = false;
|
||||
|
||||
services.resolved.extraConfig = ''
|
||||
Cache=true
|
||||
CacheFromLocalhost=true
|
||||
'';
|
||||
|
||||
nixpkgs.hostPlatform = "x86_64-linux";
|
||||
system.stateVersion = "25.05";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue