nix: make 'nix flake check' happy
parent
a4e65f02b4
commit
10fcd9111c
10
flake.nix
10
flake.nix
|
|
@ -48,7 +48,7 @@
|
||||||
system: let
|
system: let
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
in {
|
in {
|
||||||
devShell.${system} = pkgs.callPackage ./nix/devShell.nix {
|
devShells.${system}.default = pkgs.callPackage ./nix/devShell.nix {
|
||||||
zig = zig.packages.${system}."0.15.2";
|
zig = zig.packages.${system}."0.15.2";
|
||||||
wraptest = pkgs.callPackage ./nix/pkgs/wraptest.nix {};
|
wraptest = pkgs.callPackage ./nix/pkgs/wraptest.nix {};
|
||||||
zon2nix = zon2nix;
|
zon2nix = zon2nix;
|
||||||
|
|
@ -96,6 +96,9 @@
|
||||||
in {
|
in {
|
||||||
type = "app";
|
type = "app";
|
||||||
program = "${program}";
|
program = "${program}";
|
||||||
|
meta = {
|
||||||
|
description = "start a vm from ${toString module}";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
in {
|
in {
|
||||||
|
|
@ -121,11 +124,6 @@
|
||||||
ghostty = self.packages.${prev.stdenv.hostPlatform.system}.ghostty-debug;
|
ghostty = self.packages.${prev.stdenv.hostPlatform.system}.ghostty-debug;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
create-vm = import ./nix/vm/create.nix;
|
|
||||||
create-cinnamon-vm = import ./nix/vm/create-cinnamon.nix;
|
|
||||||
create-gnome-vm = import ./nix/vm/create-gnome.nix;
|
|
||||||
create-plasma6-vm = import ./nix/vm/create-plasma6.nix;
|
|
||||||
create-xfce-vm = import ./nix/vm/create-xfce.nix;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nixConfig = {
|
nixConfig = {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue