From c5675a751ce71839663f147a21f7fd586940e358 Mon Sep 17 00:00:00 2001 From: servostar Date: Fri, 17 Nov 2023 22:12:32 +0100 Subject: [PATCH] added core config for important runtime modules such as mono --- configuration.nix | 1 + core/default.nix | 5 +++++ core/dotnet.nix | 6 ++++++ 3 files changed, 12 insertions(+) create mode 100644 core/default.nix create mode 100644 core/dotnet.nix diff --git a/configuration.nix b/configuration.nix index 00acc9b..5cf523c 100644 --- a/configuration.nix +++ b/configuration.nix @@ -20,6 +20,7 @@ in ./.luks-swap.nix ./fonts.nix ./extra + ./core/ ]; hardware.bluetooth.enable = true; diff --git a/core/default.nix b/core/default.nix new file mode 100644 index 0000000..bf7d4d2 --- /dev/null +++ b/core/default.nix @@ -0,0 +1,5 @@ +{ + imports = [ + ./dotnet.nix + ]; +} diff --git a/core/dotnet.nix b/core/dotnet.nix new file mode 100644 index 0000000..50b2cc0 --- /dev/null +++ b/core/dotnet.nix @@ -0,0 +1,6 @@ +{ pkgs, config, ... }: { + environment.systemPackages = with pkgs; [ + dotnet-sdk + mono + ]; +}