mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 17:50:15 +00:00
fix: add readme and fix installer apps
This commit is contained in:
12
flake.nix
12
flake.nix
@ -69,10 +69,18 @@
|
||||
};
|
||||
};
|
||||
|
||||
# Format and install from nothing
|
||||
apps = forAllSystems (system:
|
||||
let pkgs = import nixpkgs { inherit system; };
|
||||
in { installer = import ./apps/installer.nix { inherit pkgs; }; });
|
||||
in rec {
|
||||
default = readme;
|
||||
|
||||
# Format and install from nothing
|
||||
installer = import ./apps/installer.nix { inherit pkgs; };
|
||||
|
||||
# Display the readme for this repository
|
||||
readme = import ./apps/readme.nix { inherit pkgs; };
|
||||
|
||||
});
|
||||
|
||||
# Used to run commands and edit files in this repo
|
||||
devShells = forAllSystems (system:
|
||||
|
Reference in New Issue
Block a user