my nix configs for my servers and desktop

add baal

Changed files
+104 -1
hosts
+17 -1
flake.nix
···
{ imports = builtins.attrValues nixosModules; }
];
};
+
+
baal = nixpkgs.lib.nixosSystem {
+
system = "aarch64-linux";
+
specialArgs = {
+
inherit inputs;
+
system = "aarch64-linux";
+
};
+
modules = [
+
./hosts/baal
+
+
agenix.nixosModules.default
+
+
{ imports = builtins.attrValues nixosModules; }
+
+
];
+
};
};
};
-
}
+
}
+29
hosts/baal/default.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;
+
};
+
}
+55
hosts/baal/hardware.nix
···
+
# Do not modify this file! It was generated by ‘nixos-generate-config’
+
# and may be overwritten by future invocations. Please make changes
+
# to /etc/nixos/configuration.nix instead.
+
{ config, lib, pkgs, modulesPath, ... }:
+
+
{
+
imports =
+
[ (modulesPath + "/profiles/qemu-guest.nix")
+
];
+
+
boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_pci" "virtio_scsi" "usbhid" ];
+
boot.initrd.kernelModules = [ ];
+
boot.kernelModules = [ ];
+
boot.extraModulePackages = [ ];
+
+
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
+
# (the default) this is the recommended approach. When using systemd-networkd it's
+
# still possible to use this option, but it's recommended to use it in conjunction
+
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
+
networking.useDHCP = lib.mkDefault true;
+
# networking.interfaces.enp0s6.useDHCP = lib.mkDefault true;
+
+
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
+
+
disko.devices = {
+
disk = {
+
main = {
+
type = "disk";
+
device = "/dev/sda";
+
content = {
+
type = "gpt";
+
partitions = {
+
boot = {
+
size = "512M";
+
type = "EF00";
+
content = {
+
type = "filesystem";
+
format = "vfat";
+
mountpoint = "/boot";
+
};
+
};
+
root = {
+
size = "100%";
+
content = {
+
type = "filesystem";
+
format = "ext4";
+
mountpoint = "/";
+
};
+
};
+
};
+
};
+
};
+
};
+
};
+
}
+3
hosts/baal/secrets.nix
···
+
{
+
+
}