24 lines
386 B
Nix
24 lines
386 B
Nix
{ inputs, ... }:
|
|
|
|
let
|
|
mkHost = inputs.self.lib.mkHost;
|
|
in
|
|
|
|
{
|
|
flake.nixosConfigurations.io = mkHost {
|
|
hostname = "io";
|
|
ephemeral = "/dev/mapper/cryptroot";
|
|
extraModules = with inputs.self.modules.nixos; [
|
|
# base aspects
|
|
desktop
|
|
# other aspects
|
|
ai
|
|
bluetooth
|
|
dev
|
|
libvirtd
|
|
networkmanager
|
|
niri
|
|
podman
|
|
];
|
|
};
|
|
}
|