summaryrefslogtreecommitdiff
path: root/configuration/default.nix
blob: 1a5b2da9aacfa703c89aab2277c8930117c4f2c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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";
}