This commit is contained in:
waveringana 2025-07-07 02:05:33 -04:00
parent b82175c17b
commit 6559e6f1c7
4 changed files with 104 additions and 1 deletions

29
hosts/baal/default.nix Normal file
View file

@ -0,0 +1,29 @@
{ config, lib, pkgs, modulesPath, inputs, ... }:
{
imports = [
./hardware.nix
./secrets.nix
../../common/system.nix
../../common/users.nix
../../common/services.nix
../../host-secrets.nix
];
system.stateVersion = "24.11";
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
systemd.targets.multi-user.enable = true;
networking = {
hostName = "baal";
hostId = "193mdalf";
networkmanager.enable = true;
};
virtualisation.docker = {
enable = true;
enableOnBoot = true;
};
}