added dev component

moved language-server, dotnet to dev
This commit is contained in:
Sven Vogel 2023-11-18 11:39:28 +01:00
parent 92298b4bd7
commit 17880ab25c
7 changed files with 14 additions and 4 deletions

View File

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

View File

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

7
dev/default.nix Normal file
View File

@ -0,0 +1,7 @@
{
imports = [
./language-server.nix
./dotnet.nix
./platformio.nix
];
}

5
dev/dotnet.nix Normal file
View File

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

View File

@ -3,8 +3,6 @@
./bluray.nix
./dvd.nix
./yubikey.nix
./platformio.nix
./wireguard.nix
./language-server.nix
];
}