diff options
author | EuAndreh <eu@euandre.org> | 2023-03-22 09:45:34 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-22 09:46:46 -0300 |
commit | a01f3700fcd0d7e12c049eb04df6071304afc817 (patch) | |
tree | f9b613f303ecdfda54b08027a55d87c2e80717dd | |
parent | etc/guix/home.scm: Uncomment guile-heredoc (diff) | |
download | dotfiles-a01f3700fcd0d7e12c049eb04df6071304afc817.tar.gz dotfiles-a01f3700fcd0d7e12c049eb04df6071304afc817.tar.xz |
Add "td" package in Guix and Nix
-rw-r--r-- | etc/guix/home.scm | 1 | ||||
-rw-r--r-- | etc/nix/configuration.nix | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/etc/guix/home.scm b/etc/guix/home.scm index eea6d9c..7672a38 100644 --- a/etc/guix/home.scm +++ b/etc/guix/home.scm @@ -284,6 +284,7 @@ left it off the last time it was used.") cssc quilt + td wget tmux texinfo diff --git a/etc/nix/configuration.nix b/etc/nix/configuration.nix index 6ca3003..2375783 100644 --- a/etc/nix/configuration.nix +++ b/etc/nix/configuration.nix @@ -61,6 +61,7 @@ flutter hover dart + org-euandre.td ]; }; @@ -69,6 +70,12 @@ android_sdk.accept_license = true; allowUnfree = true; }; + overlays = [ + (import (fetchTarball { + url = + "https://euandre.org/git/package-repository/snapshot/package-repository-main.tar.xz"; + }) { inherit pkgs; }) + ]; }; services = { |