idiosyn/nixos/config/casper.nix

13 lines
268 B
Nix
Raw Normal View History

2024-09-05 17:44:54 +02:00
{ self, ... }: { lib, config, pkgs, ... }: {
imports = with self.nixosModules; [ magi ];
ephemeral = {
enable = true;
device = "UUID=545bcd08-9f1a-4f42-b85e-93c47d496ac3";
boot = {
device = "UUID=A5AE-22E8";
fsType = "vfat";
};
};
2024-09-05 17:44:54 +02:00
}