79181e103f
NixOS file, configurations/<name>.nix, will be easily installable via `nixos-rebuild --flake ".#<name>"`.
19 lines
267 B
Nix
19 lines
267 B
Nix
{
|
|
description = "DevOS";
|
|
|
|
epoch = 201909;
|
|
|
|
outputs = { self, nixpkgs, nix }: {
|
|
nixosConfigurations =
|
|
let
|
|
configs = import ./configurations {
|
|
inherit nix nixpkgs;
|
|
flake = self;
|
|
};
|
|
|
|
in
|
|
configs;
|
|
|
|
};
|
|
|
|
}
|