diff options
author | Martin Fischer <martin@push-f.com> | 2025-08-24 08:15:37 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-08-27 19:31:43 +0200 |
commit | 63e381fc495cc3ef7a4afd1265b2e9722d56d317 (patch) | |
tree | 8114e61dbf7107d8fd414c5c5456c9fcb98b37a6 /nixos/shared/alloy-nix-config/default.nix | |
parent | 565fffe39d8bc511fa0feb98a245f20295f806fd (diff) |
refactor: generate Alloy config from nix attribute set
Diffstat (limited to 'nixos/shared/alloy-nix-config/default.nix')
-rw-r--r-- | nixos/shared/alloy-nix-config/default.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/nixos/shared/alloy-nix-config/default.nix b/nixos/shared/alloy-nix-config/default.nix new file mode 100644 index 0000000..d4efe02 --- /dev/null +++ b/nixos/shared/alloy-nix-config/default.nix @@ -0,0 +1,8 @@ +{ pkgs ? import <nixpkgs> {} }: + +pkgs.buildGoModule { + pname = "alloy-nix-config"; + version = "git"; + src = ./.; + vendorHash = null; +} |