mirror of
https://github.com/librephoenix/nixos-config
synced 2025-04-20 09:14:34 +05:30
Updated modified autoinstall in flake
This commit is contained in:
parent
6f3bb3cca5
commit
79afae5367
16
flake.nix
16
flake.nix
|
@ -149,19 +149,19 @@
|
||||||
|
|
||||||
install = pkgs.writeShellApplication {
|
install = pkgs.writeShellApplication {
|
||||||
name = "install";
|
name = "install";
|
||||||
runtimeInputs = with pkgs; [ git ];
|
runtimeInputs = with pkgs; [ git gnused ];
|
||||||
text = ''${./install.sh} "$@"'';
|
text = ''${./install.sh} "$@"'';
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
#apps = forAllSystems (system: {
|
apps = forAllSystems (system: {
|
||||||
# default = self.apps.${system}.install;
|
default = self.apps.${system}.install;
|
||||||
|
|
||||||
# install = {
|
install = {
|
||||||
# type = "app";
|
type = "app";
|
||||||
# program = "${self.packages.${system}.install}/bin/install";
|
program = "${self.packages.${system}.install}/bin/install";
|
||||||
# };
|
};
|
||||||
#});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
|
|
Loading…
Reference in a new issue