srvos/flake.nix

20 lines
435 B
Nix
Raw Permalink Normal View History

2022-12-08 20:59:07 +03:00
{
description = "Server-optimized nixos configuration";
2022-12-19 18:04:24 +03:00
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
2023-02-16 19:25:19 +03:00
snow.url = "path:./snow";
2022-12-19 18:04:24 +03:00
};
2023-02-16 19:25:19 +03:00
nixConfig = {
# This is a horrible hack used by snow. We are asking that this gets moved
# to the top-level ASAP.
supportedSystems = [
"x86_64-linux"
"aarch64-linux"
];
};
2022-12-28 16:27:23 +03:00
2023-02-16 19:25:19 +03:00
outputs = inputs@{ snow, ... }: snow.lib.flake inputs;
2022-12-08 20:59:07 +03:00
}