mirror of
https://git.dotcircle.dev/dotcircle/dotcircle.nix.git
synced 2025-08-30 21:42:28 +02:00
NixOS configuration modules
.forgejo/workflows | ||
docs | ||
modules | ||
pkgs | ||
.envrc | ||
.gitignore | ||
flake.lock | ||
flake.nix | ||
justfile | ||
LICENSE | ||
README.md | ||
shell.nix | ||
tsconfig.json |
dotcircle.nix
NixOS configuration modules
Usage
To use these configurations, add the following section to your flake.nix
{
inputs = {
dotcircle = {
url = "git+https://git.dotcircle.dev/dotcircle.co/dotcircle.nix.git";
};
};
outputs = {
dotcircle,
...
} @ inputs: {
nixosConfigurations ={
hostname = lib.nixosSystem {
modules = [
dotcircle.nixosModules.dotcircle
];
};
};
};
}