Compare commits

...

2 Commits

Author SHA1 Message Date
7aee9d0294 feat: add golang to the list of common packages in Ansible global tasks
Some checks failed
Nix Format Check / check-format (push) Failing after 1m21s
Python Lint Check / check-python (push) Failing after 22s
Ansible Lint Check / check-ansible (push) Failing after 13m41s
2025-05-20 22:20:52 +02:00
30c4c5e9f5 feat: remove Go package configuration from home-manager 2025-05-20 22:20:31 +02:00
2 changed files with 2 additions and 12 deletions

View File

@@ -47,6 +47,8 @@
- black
# Package manager wrapper
- nala
# Go
- golang
state: present
become: true

View File

@@ -1,12 +0,0 @@
{
config,
pkgs,
pkgs-unstable,
...
}:
{
programs.go = {
enable = true;
package = pkgs-unstable.go;
};
}