with pkgs

This commit is contained in:
Bryan Ramos 2024-05-14 11:12:07 -04:00
parent 35a736c5de
commit c71dd30ad4

View file

@ -28,6 +28,7 @@
};
in
with pkgs;
{
nixosConfigurations = {
desktop = nixpkgs.lib.nixosSystem {
@ -80,6 +81,6 @@
];
};
devShells.${system}.default = pkgs.callPackage ./shell.nix {};
devShells.${system}.default = callPackage ./shell.nix {};
};
}