forked from pub-solar/os
eab0bf074c
Also format all files and add a flake.lock for lib for a folder thats meant to work on other flakes theres never a reason it should need to refer to itself, only other flakes. So "self" and "inputs" are better namings for these variables. The userFlake* is redundant and confusing, when trying to call the functions its hard to figure out how to use them when there are now two lines of arguments to figure out.
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{ lib, nixpkgs, devshell, deploy, system }:
|
|
let
|
|
overlays = [
|
|
|
|
devshell.overlay
|
|
|
|
(final: prev: {
|
|
deploy-rs =
|
|
deploy.packages.${prev.system}.deploy-rs;
|
|
})
|
|
|
|
];
|
|
|
|
pkgs = import nixpkgs { inherit system overlays; config = { }; };
|
|
|
|
flk = pkgs.callPackage ./flk.nix { };
|
|
|
|
installPkgs = (lib.nixosSystem {
|
|
inherit system;
|
|
modules = [ ];
|
|
}).config.system.build;
|
|
in
|
|
pkgs.devshell.mkShell {
|
|
imports = [ (pkgs.devshell.importTOML ./devshell.toml) ];
|
|
|
|
packages = with installPkgs; [
|
|
nixos-install
|
|
nixos-generate-config
|
|
nixos-enter
|
|
];
|
|
|
|
git.hooks = {
|
|
pre-commit.text = lib.fileContents ./pre-commit.sh;
|
|
};
|
|
|
|
commands = with pkgs; [
|
|
{ package = flk; }
|
|
{
|
|
name = "nix";
|
|
help = pkgs.nixFlakes.meta.description;
|
|
command = ''
|
|
${pkgs.nixFlakes}/bin/nix --experimental-features "nix-command flakes ca-references" "${"\${@}"}"
|
|
'';
|
|
}
|
|
]
|
|
++ lib.optional (system != "i686-linux") { package = cachix; }
|
|
++ lib.optional (system == "x86_64-linux") {
|
|
name = "deploy";
|
|
package = deploy-rs;
|
|
help = "A simple multi-profile Nix-flake deploy tool.";
|
|
};
|
|
}
|