mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-22 06:19:11 +00:00
shells/dotnet: init
This commit is contained in:
parent
a7d3111d3e
commit
6588f916f3
@ -3,6 +3,8 @@
|
||||
with pkgs; {
|
||||
cloud = callPackage ./cloud.nix { };
|
||||
creatives = callPackage ./creatives.nix { };
|
||||
dotnet_8 = callPackage ./dotnet.nix { dotnet-sdk = dotnet-sdk_8; dotnet-runtime = dotnet-runtime_8; };
|
||||
dotnet_9 = callPackage ./dotnet.nix { dotnet-sdk = dotnet-sdk_9; dotnet-runtime = dotnet-runtime_9; };
|
||||
flatpak = callPackage ./flatpak.nix { };
|
||||
gnu = callPackage ./gnu.nix { };
|
||||
gnome = callPackage ./gnome.nix { };
|
||||
|
10
shells/dotnet.nix
Normal file
10
shells/dotnet.nix
Normal file
@ -0,0 +1,10 @@
|
||||
{ lib, dotnet-runtime, dotnet-sdk, mkShell }:
|
||||
|
||||
mkShell {
|
||||
packages = [
|
||||
dotnet-runtime
|
||||
dotnet-sdk
|
||||
];
|
||||
|
||||
inputsFrom = [ dotnet-sdk ];
|
||||
}
|
Loading…
Reference in New Issue
Block a user