From 4ac6e917aafa02825bef4f213b2c41fd902a4baf Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 20 May 2024 23:20:34 +0200 Subject: refactor: use enum for Repository.Type --- internal/config/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'internal/config/config.go') diff --git a/internal/config/config.go b/internal/config/config.go index a0a05eb..0b3b9ba 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -94,7 +94,7 @@ func mustLocalTime(in string) (time LocalTime) { } var nixpkgs = Repository{ - Type: "github", + Type: GitHub, Owner: "NixOS", Repo: "nixpkgs", } @@ -146,7 +146,7 @@ var defaultConfig = Config{ FetchTimeout: Duration{5 * time.Minute}, ImportTimeout: Duration{15 * time.Minute}, Repo: Repository{ - Type: "github", + Type: GitHub, Owner: "LnL7", Repo: "nix-darwin", }, @@ -165,7 +165,7 @@ var defaultConfig = Config{ FetchTimeout: Duration{5 * time.Minute}, ImportTimeout: Duration{15 * time.Minute}, Repo: Repository{ - Type: "github", + Type: GitHub, Owner: "nix-community", Repo: "home-manager", }, -- cgit 1.4.1