diff options
| author | andromeda <andromeda@lenovo> | 2026-05-06 21:00:30 +0200 |
|---|---|---|
| committer | andromeda <andromeda@lenovo> | 2026-05-06 21:00:30 +0200 |
| commit | ec847215cc28b18b94edc452abf8f978d2a18124 (patch) | |
| tree | ff67c59398320175b2fd0449fcffc244937d50f0 | |
| parent | e5aaed7169e7a9b1ae537763ee94ea01aa401852 (diff) | |
cgit
| -rw-r--r-- | galaxious/configuration.nix | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/galaxious/configuration.nix b/galaxious/configuration.nix index 9066c64..f2b38fd 100644 --- a/galaxious/configuration.nix +++ b/galaxious/configuration.nix @@ -1,7 +1,7 @@ { ... }: let sources = import ../npins; pkgs = import sources.nixpkgs {}; - modulesPath = "${nixpkgs}/nixos/modules"; + modulesPath = "${sources.nixpkgs}/nixos/modules"; in { boot = { initrd = { @@ -35,7 +35,12 @@ in { flake.source = sources.nixpkgs; hostPlatform = "x86_64-linux"; }; - services.openssh.enable = true; + services = { + cgit."git.galaxious.de" = { + enable = true; + }; + openssh.enable = true; + }; systemd.network = { enable = true; networks."40-wan" = { |
