top-level should direnv fine now (hwtr)

pull/5/head
pegasust 2023-01-12 11:04:56 -07:00
parent c6d74c6b3e
commit 313a5e7f3e
3 changed files with 33 additions and 29 deletions

View File

@ -96,7 +96,7 @@
unit_tests = lib.runTests unit_tests; unit_tests = lib.runTests unit_tests;
secrets = import ./secrets final_inputs; secrets = import ./secrets final_inputs;
debug = { debug = {
inherit final_inputs hosts users modules lib inputs_w_pkgs unit_tests pkgs; inherit final_inputs hosts users modules lib inputs_w_lib unit_tests pkgs;
}; };
}; };
} }

View File

@ -9,11 +9,13 @@ flake_input@{ kpcli-py, nixgl, rust-overlay, neovim-nightly-overlay, ... }: [
(final: prev: (final: prev:
let let
nightlyRustWithExts = exts: final.rust-bin.selectLatestNightlyWith ( nightlyRustWithExts = exts: final.rust-bin.selectLatestNightlyWith (
toolchain: toolchain.minimal.override.extensions = exts; toolchain: (toolchain.minimal.override {
extensions = exts;
})
); );
# https://rust-lang.github.io/rustup/concepts/profiles.html # https://rust-lang.github.io/rustup/concepts/profiles.html
rust-default-components = ["rust-docs" "rustfmt" "clippy"]; rust-default-components = [ "rust-docs" "rustfmt" "clippy" ];
rust-dev-components = rust-default-components ++ ["rust-src" "rust-analyzer" "miri"]; rust-dev-components = rust-default-components ++ [ "rust-src" "rust-analyzer" "miri" ];
in in
{ {
# use python3.9, which works because of cython somehow? # use python3.9, which works because of cython somehow?
@ -31,8 +33,8 @@ flake_input@{ kpcli-py, nixgl, rust-overlay, neovim-nightly-overlay, ... }: [
}; };
rust4devs = nightlyRustWithExts rust-dev-components; rust4devs = nightlyRustWithExts rust-dev-components;
rust4cargo = nightlyRustWithExts []; rust4cargo = nightlyRustWithExts [ ];
rust4normi = nightlyRustWIthExts rust-default-components; rust4normi = nightlyRustWithExts rust-default-components;
}) })
] ]

View File

@ -13,6 +13,8 @@ rm -rf ~/.local/share/nvim/mason
# test if we have home-manager, if not, attempt to use nix to put home-manager to # test if we have home-manager, if not, attempt to use nix to put home-manager to
# our environment # our environment
if [ $(home-manager >/dev/null 2>&1) ]; then if [ $(home-manager >/dev/null 2>&1) ]; then
# highly likely we don't even have nix support to start with, so let's fix that
sudo mv /etc/
nix-shell -p home-manager --run "home-manager switch --flake $HOME_MANAGER_DIR" nix-shell -p home-manager --run "home-manager switch --flake $HOME_MANAGER_DIR"
else else
home-manager switch -b backup --flake "$HOME_MANAGER_DIR" home-manager switch -b backup --flake "$HOME_MANAGER_DIR"