This commit is contained in:
John Bowdre 2023-07-31 12:40:37 -05:00
parent 739477bd47
commit 5599624ecb
2 changed files with 7 additions and 0 deletions

View file

@ -3,6 +3,7 @@
imports = [
./direnv.nix
./go.nix
./git.nix
./fish.nix
./tmux.nix

View file

@ -0,0 +1,6 @@
{ pkgs, lib, ... }: {
programs.go = {
enable = true;
package = pkgs.go;
};
}