summaryrefslogtreecommitdiff
path: root/modules/common
diff options
context:
space:
mode:
authorAzat Bahawi <azat@bahawi.net>2024-01-21 15:11:34 +0300
committerAzat Bahawi <azat@bahawi.net>2024-01-21 15:11:34 +0300
commit8dd4dce913b60163afb0b4a9bdecc79c0c7ef873 (patch)
tree7fac2f22f4c1db027469bcebdd7af159b56aa412 /modules/common
parent251ce90e1bc99a9a05a2ebfe548f696c839e7a2a (diff)
2024-01-21
Diffstat (limited to 'modules/common')
-rw-r--r--modules/common/git.nix13
-rw-r--r--modules/common/profiles/dev/default.nix13
2 files changed, 15 insertions, 11 deletions
diff --git a/modules/common/git.nix b/modules/common/git.nix
index fbd7ec7..45a0347 100644
--- a/modules/common/git.nix
+++ b/modules/common/git.nix
@@ -68,7 +68,7 @@ in {
core.whitespace = "trailing-space";
init.defaultBranch = "master";
status.submoduleSummary = true;
- commit.verbose = 1;
+ commit.verbose = true;
push.autoSetupRemote = true;
pull.rebase = true;
rebase = {
@@ -93,19 +93,22 @@ in {
gitlab.user = my.username;
}
// mapAttrs'
- (n: v: nameValuePair ''url "git@${v}:"'' {insteadOf = "${n}:";}) {
- "alpine" = "gitlab.alpinelinux.org";
+ (name: value: nameValuePair ''url "git@${value}:"'' {insteadOf = "${name}:";}) {
"bitbucket" = "bitbucket.com";
"codeberg" = "codeberg.org";
- "freedesktop" = "gitlab.freedesktop.org";
"github" = "github.com";
"gitlab" = "gitlab.com";
+ "sourcehut" = "git.sr.ht";
+ }
+ // mapAttrs'
+ (name: values: nameValuePair ''url "https://${values}/"'' {insteadOf = "${name}:";}) {
+ "alpine" = "gitlab.alpinelinux.org";
+ "freedesktop" = "gitlab.freedesktop.org";
"gnome" = "gitlab.gnome.org";
"haskell" = "gitlab.haskell.org";
"kde" = "invent.kde.org";
"notabug" = "notabug.org";
"opencode" = "opencode.net";
- "sourcehut" = "git.sr.ht";
"torproject" = "gitlab.torproject.org";
"videolan" = "code.videolan.org";
};
diff --git a/modules/common/profiles/dev/default.nix b/modules/common/profiles/dev/default.nix
index f7c313f..1bc0b0e 100644
--- a/modules/common/profiles/dev/default.nix
+++ b/modules/common/profiles/dev/default.nix
@@ -61,16 +61,17 @@ in {
};
packages = with pkgs; [
+ age
+ htmlq
+ httpie
+ hydra-check
+ jq
+ logcli
nix-index
nix-update
nixpkgs-review
- hydra-check
- jq
- yq
- htmlq
sops
- httpie
- logcli
+ yq
];
};