reo101
e3b1539b41
Pass around `perSystem`'s `pkgs` instances to the system configurations Some more refactoring in `configurations`' `mkHost` functions Also start using `home-manager`'s `useGlobalPkgs` option Also use `mkShellNoCC` for default `devShell` Also `nix flake update`
7 lines
179 B
Nix
7 lines
179 B
Nix
# If pkgs is not defined, instanciate nixpkgs from locked commit
|
|
{ pkgs ? (import ../nixpkgs.nix) { }
|
|
, inputs
|
|
, ...
|
|
}: {
|
|
default = import ./default { inherit pkgs inputs; };
|
|
}
|