nixcfg/hosts/baal/default.nix
2025-07-07 08:44:25 -04:00

29 lines
542 B
Nix

{ 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;
};
}