NixOS configuration modules
Find a file
2025-06-09 23:26:20 +02:00
.forgejo/workflows fix: ci corepack prepare pnpm 2025-02-17 21:20:15 +01:00
docs chore: use npm registry for @dotcircle/styles 2025-05-16 01:10:16 +02:00
modules fix: firewall comments 2025-06-09 23:22:12 +02:00
pkgs feat: mattermail upgrade to v0.1.2 2025-06-09 23:26:20 +02:00
.envrc feat: add .envrc 2025-02-27 21:50:10 +01:00
.gitignore feat: add .envrc 2025-02-27 21:50:10 +01:00
flake.lock chore: updates 2025-05-30 22:09:21 +02:00
flake.nix feat: pre-commit, docs build 2024-12-08 11:18:20 +01:00
justfile feat: linting 2024-12-08 11:31:21 +01:00
LICENSE Initial commit 2024-11-10 22:04:40 +01:00
README.md feat: linting 2024-12-08 11:31:21 +01:00
shell.nix feat: linting 2024-12-08 11:31:21 +01:00
tsconfig.json feat: docs, refactor: dc -> dotcircle 2024-12-08 00:38:52 +01:00

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
        ];
      };
    };
  };
}