fix(flakes): minimum to work correctly, along with user shell integration
parent
8b4cb660c8
commit
632104be69
13
flake.nix
13
flake.nix
|
@ -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" ] ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{inputs, cells}: let
|
||||
{inputs, cell}: let
|
||||
inherit (inputs) std nixpkgs;
|
||||
|
||||
in {
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
{inputs, cell}: {
|
||||
htran = inputs.cells.dotfiles.devshells.default;
|
||||
hungtran = inputs.cells.dotfiles.devshells.default;
|
||||
}
|
Loading…
Reference in New Issue