added core config for important runtime modules such as mono

This commit is contained in:
Sven Vogel 2023-11-17 22:12:32 +01:00
parent b614c69829
commit c5675a751c
3 changed files with 12 additions and 0 deletions

View File

@ -20,6 +20,7 @@ in
./.luks-swap.nix ./.luks-swap.nix
./fonts.nix ./fonts.nix
./extra ./extra
./core/
]; ];
hardware.bluetooth.enable = true; hardware.bluetooth.enable = true;

5
core/default.nix Normal file
View File

@ -0,0 +1,5 @@
{
imports = [
./dotnet.nix
];
}

6
core/dotnet.nix Normal file
View File

@ -0,0 +1,6 @@
{ pkgs, config, ... }: {
environment.systemPackages = with pkgs; [
dotnet-sdk
mono
];
}