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 =
let
inherit (std.blockTypes) devShells functions;
inherit (std.blockTypes) devshells functions;
in
[
(devShells "devshells")
(functions "host_profile")
(functions "home_profile")
(devshells "devshells")
(devshells "userShells")
# (functions "host_profile")
# (functions "home_profile")
];
}
{
devShells = std.harvest [ [ "dotfiles" "devshells" ] ];
nixosConfigurations = std.pick [ [ "dotfiles" "nixos" ] ];
homeConfigurations = std.pick [ [ "dotfiles" "home" ] ];
# nixosConfigurations = std.pick [ [ "dotfiles" "nixos" ] ];
# homeConfigurations = std.pick [ [ "dotfiles" "home" ] ];
};
}

View File

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

View File

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