Inherit just and nixfmt and update lock file

This commit is contained in:
Oliver Davies 2024-03-30 22:14:48 +00:00
parent e67424baa5
commit 1418a2333f
2 changed files with 6 additions and 7 deletions

View file

@ -22,12 +22,11 @@
mkNixos = import ./lib/nixos { inherit inputs self username; };
mkWsl = import ./lib/wsl2 { inherit inputs self username; };
inherit (pkgs) mkShell;
inherit (pkgs) just mkShell nixfmt;
in {
packages.${system}.default =
mkShell { buildInputs = with pkgs; [ just ]; };
packages.${system}.default = mkShell { buildInputs = [ just ]; };
formatter.${system} = pkgs.nixfmt;
formatter.${system} = nixfmt;
nixosConfigurations = {
apollo = mkNixos {