summary refs log tree commit diff
path: root/nix/testVm/default.nix
blob: 3b67f492786f57ad4e9d90a6ce98d0245605a487 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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"