Compare commits

...

2 commits

Author SHA1 Message Date
e4ac114278
chore: nix flake update
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-10-01 16:56:20 +02:00
73a300035b
feat: enable golang
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-10-01 14:50:10 +02:00
3 changed files with 11 additions and 4 deletions

8
flake.lock generated
View file

@ -591,11 +591,11 @@
"pre-commit-hooks": "pre-commit-hooks" "pre-commit-hooks": "pre-commit-hooks"
}, },
"locked": { "locked": {
"lastModified": 1759233404, "lastModified": 1759330440,
"narHash": "sha256-WEINmubNOLLb5wkXIDJztvP+G/ZXhY+cUhqLpUBtYaY=", "narHash": "sha256-9enB00HsI7Xm1ANxTh/TKLaTwSzivw2sk9UuptNqTIA=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "5c2c66dd0c7f4d6c933dd77c30a1e98bfc75b93d", "rev": "9c404ac98cea054aaae865b110b71b22b4332828",
"revCount": 177, "revCount": 181,
"type": "git", "type": "git",
"url": "https://git.escapeangle.com/lander/nixvim.git" "url": "https://git.escapeangle.com/lander/nixvim.git"
}, },

View file

@ -3,6 +3,7 @@
imports = [ imports = [
./alacritty.nix ./alacritty.nix
./ghostty.nix ./ghostty.nix
./go.nix
./irssi.nix ./irssi.nix
#./mail.nix #./mail.nix
]; ];

View file

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