mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-22 19:41:30 +00:00
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{
|
|
description = "Selfprivacy NixOS configuration flake";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs";
|
|
|
|
selfprivacy-overlay.url =
|
|
"git+https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nix-repo.git";
|
|
|
|
# these inputs are expected to be set by the caller
|
|
# for example, upon nix build using --override-input
|
|
userdata-json.flake = false; # userdata.json
|
|
hardware-configuration-nix.flake = false; # hardware-configuration.nix
|
|
};
|
|
|
|
outputs =
|
|
{ self
|
|
, nixpkgs
|
|
, selfprivacy-overlay
|
|
, userdata-json
|
|
, hardware-configuration-nix
|
|
}:
|
|
let
|
|
system = "x86_64-linux";
|
|
userdata = builtins.fromJSON (builtins.readFile userdata-json);
|
|
hardware-configuration = import hardware-configuration-nix;
|
|
in
|
|
{
|
|
nixosConfigurations = {
|
|
just-nixos = nixpkgs.lib.nixosSystem {
|
|
specialArgs = { inherit system userdata; };
|
|
modules = [
|
|
{ nixpkgs.overlays = [ selfprivacy-overlay.overlay ]; }
|
|
hardware-configuration
|
|
./configuration.nix
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|