42 lines
779 B
Nix
42 lines
779 B
Nix
{ config, lib, pkgs, modulesPath, inputs, ... }:
|
|
{
|
|
imports = [
|
|
./hardware.nix
|
|
./secrets.nix
|
|
|
|
../../common/system.nix
|
|
../../common/users.nix
|
|
../../common/services.nix
|
|
|
|
../../host-secrets.nix
|
|
];
|
|
|
|
boot = {
|
|
loader = {
|
|
systemd-boot.enable = true;
|
|
efi = {
|
|
canTouchEfiVariables = true;
|
|
efiSysMountPoint = "/boot";
|
|
};
|
|
};
|
|
initrd.systemd.enable = true;
|
|
};
|
|
|
|
system.stateVersion = "24.11";
|
|
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
|
|
|
|
systemd.targets.multi-user.enable = true;
|
|
|
|
networking = {
|
|
hostName = "baal";
|
|
hostId = "aaaaaaaa";
|
|
networkmanager.enable = true;
|
|
};
|
|
|
|
virtualisation.docker = {
|
|
enable = true;
|
|
enableOnBoot = true;
|
|
};
|
|
|
|
documentation.enable = false;
|
|
}
|