parent
92298b4bd7
commit
17880ab25c
|
@ -20,7 +20,8 @@ in
|
||||||
./.luks-swap.nix
|
./.luks-swap.nix
|
||||||
./fonts.nix
|
./fonts.nix
|
||||||
./extra
|
./extra
|
||||||
./core/
|
./core
|
||||||
|
./dev
|
||||||
];
|
];
|
||||||
|
|
||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{ pkgs, config, ... }: {
|
{ pkgs, config, ... }: {
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
dotnet-sdk
|
|
||||||
mono
|
mono
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./language-server.nix
|
||||||
|
./dotnet.nix
|
||||||
|
./platformio.nix
|
||||||
|
];
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
{ pkgs, config, ... }: {
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
dotnet-sdk
|
||||||
|
];
|
||||||
|
}
|
|
@ -3,8 +3,6 @@
|
||||||
./bluray.nix
|
./bluray.nix
|
||||||
./dvd.nix
|
./dvd.nix
|
||||||
./yubikey.nix
|
./yubikey.nix
|
||||||
./platformio.nix
|
|
||||||
./wireguard.nix
|
./wireguard.nix
|
||||||
./language-server.nix
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue