1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00
This commit is contained in:
Stefan Ellmauthaler 2022-02-06 11:13:49 +01:00
parent 877e1cbd97
commit 7c6d489d26
Signed by: ellmau
GPG Key ID: C804A9C1B7AF8256
2 changed files with 5 additions and 0 deletions

View File

@ -21,6 +21,7 @@ in
./nextcloud.nix
./polybar.nix
./zsh.nix
./go.nix
];
home-manager.users.ellmau = {

4
users/ellmau/go.nix Normal file
View File

@ -0,0 +1,4 @@
{config, pkgs, lib, ...}:
{
home-manager.users.ellmau.programs.go.enable = true;
}