os/shell.nix

93 lines
2.2 KiB
Nix
Raw Normal View History

let
nixpkgs = import ./compat/nixpkgs.nix;
2020-12-29 06:12:27 +00:00
fetch = import ./compat/fetch.nix;
devshell' = fetch "devshell";
pkgs' = import devshell' { inherit nixpkgs; };
in
2020-12-29 06:12:27 +00:00
{ pkgs ? pkgs', ... }:
let
build = "config.system.build";
installPkgs = (import "${nixpkgs}/nixos" {
configuration = { };
system = pkgs.system;
}).config.system.build;
2020-12-26 05:14:56 +00:00
flk = pkgs.writeShellScriptBin "flk" ''
2020-12-31 19:41:01 +00:00
if [[ -z "$1" ]]; then
echo "Usage: $(basename "$0") [ iso | up | install {host} | {host} [switch|boot|test] ]"
elif [[ "$1" == "up" ]]; then
mkdir -p up
hostname=$(hostname)
nixos-generate-config --dir up/$hostname
echo \
"{
imports = [ ../up/$hostname/configuration.nix ];
}" > hosts/up-$hostname.nix
git add -f up/$hostname
git add -f hosts/up-$hostname.nix
2020-12-29 08:17:36 +00:00
elif [[ "$1" == "iso" ]]; then
2021-01-12 00:36:48 +00:00
nix build $DEVSHELL_ROOT#nixosConfigurations.niximg.${build}.isoImage "${"\${@:2}"}"
2020-12-29 08:17:36 +00:00
elif [[ "$1" == "install" ]]; then
2020-12-29 07:36:44 +00:00
sudo nixos-install --flake ".#$2" "${"\${@:3}"}"
else
2020-12-29 07:36:44 +00:00
sudo nixos-rebuild --flake ".#$1" "${"\${@:2}"}"
fi
'';
2020-12-29 06:12:27 +00:00
2020-12-29 08:17:36 +00:00
name = "flk";
2020-07-31 04:17:28 +00:00
in
2020-12-29 06:12:27 +00:00
pkgs.mkDevShell {
2020-12-29 08:17:36 +00:00
inherit name;
2020-12-29 06:12:27 +00:00
packages = with pkgs; with installPkgs; [
2020-08-02 22:10:53 +00:00
git-crypt
nixos-install
nixos-generate-config
nixos-enter
pre-commit
2020-08-02 22:10:53 +00:00
];
2020-01-02 04:01:58 +00:00
2020-12-29 08:17:36 +00:00
env = { inherit name; };
commands = with pkgs; [
{
name = nixpkgs-fmt.pname;
package = nixpkgs-fmt;
help = nixpkgs-fmt.meta.description;
category = "linters";
}
{
name = flk.name;
help = "Build, deploy, and install nixflk";
category = "main";
package = flk;
}
{
name = "hooks";
help = "install git hooks";
command = "pre-commit install";
}
2020-12-29 08:17:36 +00:00
{
name = "grip";
help = python38Packages.grip.meta.description;
category = "servers";
package = python38Packages.grip;
}
{
name = git.pname;
help = git.meta.description;
category = "vcs";
package = git;
}
{
name = "nix";
help = nixFlakes.meta.description;
category = "main";
command = ''${nixFlakes}/bin/nix --option experimental-features "nix-command flakes ca-references" "$@"'';
}
];
2020-12-29 06:12:27 +00:00
2020-01-02 04:01:58 +00:00
}