ROCKPro64-Server/flake.nix

27 lines
507 B
Nix
Raw Permalink Normal View History

2025-02-28 12:08:04 -05:00
{
inputs = {
nixpkgs.url = "nixpkgs/nixos-24.11";
unstable.url = "nixpkgs/nixos-unstable";
impermanence.url = "github:nix-community/impermanence";
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
self,
nixpkgs,
unstable,
impermanence,
disko,
...
}@inputs:
{
nixosConfigurations.rubble = nixpkgs.lib.nixosSystem {
modules = [ ./system ];
2025-02-28 12:08:04 -05:00
specialArgs = inputs;
};
};
}