mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
17 lines
352 B
Nix
17 lines
352 B
Nix
{
|
|
description = "An example NixOS configuration";
|
|
|
|
inputs.nixpkgs = { url = "github:nixos/nixpkgs/nixos-unstable"; };
|
|
|
|
outputs = { self, nixpkgs }: {
|
|
nixosConfigurations = {
|
|
mysystem = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
(import ./configuration.nix)
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|