nixos-config/modules/lix.nix

17 lines
614 B
Nix
Raw Normal View History

let
module = fetchTarball {
name = "source";
2024-11-13 20:54:24 +00:00
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.91.1-1.tar.gz";
sha256 = "sha256-6U0CyPycIBc04hbYy2hBINnVso58n/ZyywY2BD3hu+s=";
};
lixSrc = fetchTarball {
name = "source";
2024-11-13 20:54:24 +00:00
url = "https://git.lix.systems/lix-project/lix/archive/2.91.1.tar.gz";
sha256 = "sha256-hiGtfzxFkDc9TSYsb96Whg0vnqBVV7CUxyscZNhed0U=";
};
in
2024-11-13 20:54:24 +00:00
# This is the core of the code you need; it is an exercise to the
# reader to write the sources in a nicer way, or by using npins or
# similar pinning tools.
import "${module}/module.nix" { lix = lixSrc; }