Added parts of sources to nixfiles.

Needs further automation, eventually. Gitea also now set up properly.
This commit is contained in:
kat witch 2021-02-23 17:29:13 +00:00
parent 05d4f262f8
commit 469dbda517
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
3 changed files with 20 additions and 1 deletions

View file

@ -6,6 +6,13 @@ let
in {
imports = [ ../../modules ../users (sources.home-manager + "/nixos") ];
nix.nixPath = [
"nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixos"
"nixpkgs-unstable=${sources.nixpkgs-unstable}"
"nixpkgs-mozilla=${sources.nixpkgs-mozilla}"
"arc=${sources.arc-nixexprs}"
];
#boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_latest;
#boot.kernelParams = [ "quiet" ];

View file

@ -3,7 +3,7 @@
{
services.gitea = {
enable = true;
disableRegistration = true; # TODO change for initial setup
disableRegistration = true;
domain = "git.kittywit.ch";
rootUrl = "https://git.kittywit.ch";
};