mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
Testing fixes for automated install
This commit is contained in:
parent
b2e631f415
commit
182645e1ea
18
flake.nix
18
flake.nix
|
@ -1,10 +1,10 @@
|
||||||
{
|
{
|
||||||
description = "Flake of LibrePhoenix";
|
description = "Flake of LibrePhoenix";
|
||||||
|
|
||||||
outputs = { self, nixpkgs, nixpkgs-stable, home-manager, nix-doom-emacs, nix-straight,
|
outputs = inputs@{ self, nixpkgs, nixpkgs-stable, home-manager, nix-doom-emacs, nix-straight,
|
||||||
stylix, blocklist-hosts, rust-overlay, hyprland-plugins,
|
stylix, blocklist-hosts, rust-overlay, hyprland-plugins,
|
||||||
eaf, eaf-browser, org-nursery, org-yaap,
|
eaf, eaf-browser, org-nursery, org-yaap,
|
||||||
org-side-tree, org-timeblock, phscroll, ... }@inputs:
|
org-side-tree, org-timeblock, phscroll, ... }:
|
||||||
let
|
let
|
||||||
# ---- SYSTEM SETTINGS ---- #
|
# ---- SYSTEM SETTINGS ---- #
|
||||||
systemSettings = {
|
systemSettings = {
|
||||||
|
@ -132,6 +132,20 @@
|
||||||
text = builtins.readFile ./install.sh;
|
text = builtins.readFile ./install.sh;
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
apps = forAllSystems (system: {
|
||||||
|
default = self.apps.${system}.install;
|
||||||
|
|
||||||
|
demo = {
|
||||||
|
type = "app";
|
||||||
|
program = "${self.packages.${system}.demo}/bin/run-plasma-demo-vm";
|
||||||
|
};
|
||||||
|
|
||||||
|
install = {
|
||||||
|
type = "app";
|
||||||
|
program = "${self.packages.${system}.install}/bin/install";
|
||||||
|
};
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
|
|
Loading…
Reference in a new issue