order/flake.nix

41 lines
612 B
Nix
Raw Permalink Normal View History

2025-01-14 13:21:22 -05:00
{
description = "nixos flake thing";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = {
self,
nixpkgs,
...
}:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config = {
allowUnfree = true;
};
};
in
{
nixosConfigurations = {
# create host aether
aether = nixpkgs.lib.nixosSystem {
specialArgs = { inherit system; };
modules = [
./aether/configuration.nix
./inscriptions/tori.nix
./inscriptions/overlays.nix
];
};
};
};
}