29 lines
542 B
Nix
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;
|
|
};
|
|
}
|