added core config for important runtime modules such as mono
This commit is contained in:
parent
b614c69829
commit
c5675a751c
|
@ -20,6 +20,7 @@ in
|
|||
./.luks-swap.nix
|
||||
./fonts.nix
|
||||
./extra
|
||||
./core/
|
||||
];
|
||||
|
||||
hardware.bluetooth.enable = true;
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./dotnet.nix
|
||||
];
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{ pkgs, config, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
dotnet-sdk
|
||||
mono
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue