1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-04-03 18:14:15 +00:00
.dotfiles/nixos/hosts/near/rpi5-config/default.nix
2025-03-22 16:16:26 -04:00

13 lines
392 B
Nix

let
# pinned Nixpkgs version
nixpkgs = builtins.fetchTarball
{ url = "https://github.com/NixOS/nixpkgs/archive/76612b17c0ce.tar.gz";
sha256 = "03pmy2dv212mmxgcvwxinf3xy6m6zzr8ri71pda1lqggmll2na12";
};
nixos = import (nixpkgs + "/nixos") { configuration = ./configuration.nix; };
in
{
inherit (nixos.config.system.build) sdImage;
inherit (nixos) system pkgs config;
}