This repository has been archived on 2024-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
nixos/flake.nix

15 lines
371 B
Nix
Raw Normal View History

{
description = "Payas' NixOS configuration (flake edition)";
2020-11-03 16:27:55 +05:30
inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; };
outputs = { self, nixpkgs, ... }: {
nixosConfigurations = {
enterprise = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
2020-11-03 16:27:55 +05:30
modules = [ (import ./hosts/enterprise/configuration.nix) ];
};
};
};
}