From 7c328ba30596970af40e3bade54621ecfa3e7ad1 Mon Sep 17 00:00:00 2001 From: seth Date: Tue, 6 Aug 2024 20:32:29 -0400 Subject: initial commit --- configuration/default.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 configuration/default.nix (limited to 'configuration/default.nix') 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"; +} -- cgit v1.2.3