diff options
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 = { |
