2021-02-05 16:25:39 +01:00
|
|
|
{
|
|
|
|
description = "Nixos configuration with flakes";
|
|
|
|
inputs = {
|
2021-02-05 16:35:33 +01:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
2021-02-05 16:25:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = { self, nixpkgs }: {
|
|
|
|
nixosConfigurations.porthos = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
modules =
|
|
|
|
[
|
|
|
|
({ pkgs, ... }: {
|
|
|
|
# Let 'nixos-version --json' know about the Git revision
|
|
|
|
# of this flake.
|
|
|
|
system.configurationRevision =
|
|
|
|
if self ? rev
|
|
|
|
then self.rev
|
|
|
|
else throw "Refusing to build from a dirty Git tree!";
|
|
|
|
})
|
|
|
|
./configuration.nix
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|