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 =
|
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" ] ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{inputs, cells}: let
|
{inputs, cell}: let
|
||||||
inherit (inputs) std nixpkgs;
|
inherit (inputs) std nixpkgs;
|
||||||
|
|
||||||
in {
|
in {
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
{inputs, cell}: {
|
||||||
|
htran = inputs.cells.dotfiles.devshells.default;
|
||||||
|
hungtran = inputs.cells.dotfiles.devshells.default;
|
||||||
|
}
|
Loading…
Reference in New Issue