diff options
| author | Seth Flynn <[email protected]> | 2025-04-03 08:05:17 -0400 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-04-03 08:07:48 -0400 |
| commit | dddab21976175da6497cd655e81db9bd0e351b91 (patch) | |
| tree | 7b4136cdd80bc9d224e8e74d83966d7c6f0a372e /systems/atlas | |
| parent | b6d041716acd4243a956a73369f728673e9b6d83 (diff) | |
Diffstat (limited to 'systems/atlas')
| -rw-r--r-- | systems/atlas/default.nix | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/systems/atlas/default.nix b/systems/atlas/default.nix index 8350ce7..eb7667f 100644 --- a/systems/atlas/default.nix +++ b/systems/atlas/default.nix @@ -1,4 +1,10 @@ -{ modulesPath, inputs, ... }: +{ + config, + modulesPath, + inputs, + ... +}: + { imports = [ (modulesPath + "/profiles/minimal.nix") @@ -10,6 +16,16 @@ ]; borealis = { + github-mirror = { + enable = true; + + hostname = "git." + config.networking.domain; + mirroredUsers = [ + "getchoo" + "getchoo-archive" + ]; + }; + profiles.server.enable = true; }; @@ -18,10 +34,6 @@ loader.efi.canTouchEfiVariables = true; }; - catppuccin = { - forgejo.enable = true; - }; - networking = { domain = "getchoo.com"; hostName = "atlas"; @@ -35,8 +47,6 @@ nixpkgs.hostPlatform = "aarch64-linux"; services = { - forgejo.enable = true; - hedgedoc.enable = true; kanidm = { |
