Skip to content

Getting Started

Adding the dotcircle.nix flake to your configuration

In your flake.nix, merge in the following configuration:

flake.nix
{
inputs = {
dotcircle.url = "https://git.dotcircle.dev/dotcircle.co/dotcircle.nix";
};
outputs = {
dotcircle,
...
} @inputs: {
nixosConfiguration = {
hostname = lib.nixosSystem {
modules = [
dotcircle.nixosModules.dotcircle
];
};
};
};
}