Dagger CLI needs a container runtime (Docker/containerd) to start its engine, which the bare nix runner doesn't have. Use nix eval directly instead — it's already available and more appropriate for a nix host. Reverts the dagger flake input since it's not usable here. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
28 lines
750 B
Nix
28 lines
750 B
Nix
{
|
|
description = "NixOS configuration for ringtail (service host & gaming PC)";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
|
|
disko = {
|
|
url = "github:nix-community/disko";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/release-25.11";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = { nixpkgs, disko, home-manager, ... }: {
|
|
nixosConfigurations.ringtail = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
disko.nixosModules.disko
|
|
home-manager.nixosModules.home-manager
|
|
./disk-config.nix
|
|
./hardware-configuration.nix
|
|
./configuration.nix
|
|
];
|
|
};
|
|
};
|
|
}
|