nix-config/aspects/hosts/rotterdam.nix
2026-03-26 07:50:31 -03:00

27 lines
444 B
Nix

{ inputs, ... }:
let
mkHost = inputs.self.lib.mkHost;
in
{
flake.nixosConfigurations.rotterdam = mkHost {
hostname = "rotterdam";
ephemeralRootDev = "/dev/mapper/cryptroot";
extraModules = with inputs.self.modules.nixos; [
# base aspects
desktop
gaming
# other aspects
ai
bluetooth
dev
fwupd
kde
libvirtd
networkmanager
# niri
podman
];
};
}