summaryrefslogtreecommitdiff
path: root/configuration/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'configuration/default.nix')
-rw-r--r--configuration/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/configuration/default.nix b/configuration/default.nix
new file mode 100644
index 0000000..1a5b2da
--- /dev/null
+++ b/configuration/default.nix
@@ -0,0 +1,19 @@
+{
+ imports = [
+ ./busybox.nix
+ ./minimal.nix # Making this configuration a bit smaller to save on build time & download size
+ ./module-fixes.nix # Module-level fixes for musl
+ ];
+
+ boot.loader.systemd-boot.enable = true;
+
+ fileSystems = {
+ "/" = {
+ device = "none";
+ fsType = "ramfs";
+ };
+ };
+
+ # You probably know the drill. Don't change this.
+ system.stateVersion = "24.11";
+}