fix(flakes): minimum to work correctly, along with user shell integration

std
Hung 2023-05-16 09:31:51 -07:00
parent 8b4cb660c8
commit 632104be69
3 changed files with 12 additions and 7 deletions

View File

@ -23,18 +23,19 @@
cellBlocks = cellBlocks =
let let
inherit (std.blockTypes) devShells functions; inherit (std.blockTypes) devshells functions;
in in
[ [
(devShells "devshells") (devshells "devshells")
(functions "host_profile") (devshells "userShells")
(functions "home_profile") # (functions "host_profile")
# (functions "home_profile")
]; ];
} }
{ {
devShells = std.harvest [ [ "dotfiles" "devshells" ] ]; devShells = std.harvest [ [ "dotfiles" "devshells" ] ];
nixosConfigurations = std.pick [ [ "dotfiles" "nixos" ] ]; # nixosConfigurations = std.pick [ [ "dotfiles" "nixos" ] ];
homeConfigurations = std.pick [ [ "dotfiles" "home" ] ]; # homeConfigurations = std.pick [ [ "dotfiles" "home" ] ];
}; };
} }

View File

@ -1,4 +1,4 @@
{inputs, cells}: let {inputs, cell}: let
inherit (inputs) std nixpkgs; inherit (inputs) std nixpkgs;
in { in {

View File

@ -0,0 +1,4 @@
{inputs, cell}: {
htran = inputs.cells.dotfiles.devshells.default;
hungtran = inputs.cells.dotfiles.devshells.default;
}