mirror of
https://github.com/librephoenix/nixos-config
synced 2025-04-20 17:24:35 +05:30
Testing update to auto install
This commit is contained in:
parent
182645e1ea
commit
3315322eac
10
flake.nix
10
flake.nix
|
@ -127,20 +127,12 @@
|
||||||
{
|
{
|
||||||
default = self.packages.${system}.install;
|
default = self.packages.${system}.install;
|
||||||
|
|
||||||
install = pkgs.writeShellApplication {
|
install = pkgs.writeScriptBin "install" ./install.sh;
|
||||||
name = "install";
|
|
||||||
text = builtins.readFile ./install.sh;
|
|
||||||
};
|
|
||||||
});
|
});
|
||||||
|
|
||||||
apps = forAllSystems (system: {
|
apps = forAllSystems (system: {
|
||||||
default = self.apps.${system}.install;
|
default = self.apps.${system}.install;
|
||||||
|
|
||||||
demo = {
|
|
||||||
type = "app";
|
|
||||||
program = "${self.packages.${system}.demo}/bin/run-plasma-demo-vm";
|
|
||||||
};
|
|
||||||
|
|
||||||
install = {
|
install = {
|
||||||
type = "app";
|
type = "app";
|
||||||
program = "${self.packages.${system}.install}/bin/install";
|
program = "${self.packages.${system}.install}/bin/install";
|
||||||
|
|
Loading…
Reference in a new issue