mirror of
https://github.com/spacebarchat/server.git
synced 2026-03-30 07:30:00 +00:00
15 lines
345 B
Nix
15 lines
345 B
Nix
{ self, nixpkgs }:
|
|
|
|
nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
self.nixosModules.default
|
|
./configuration.nix
|
|
./postgres.nix
|
|
./perlless.nix
|
|
./vm.nix
|
|
];
|
|
specialArgs = { inherit self nixpkgs; };
|
|
}
|
|
|
|
#DERIVATION=".#nixosConfigurations.${CONFIG}.config.system.build.toplevel" |