mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-18 22:29:39 +02:00
* feat: new host - idols-akane * fix: missing efi files * fix: efi partition - permission issue
18 lines
203 B
Nix
18 lines
203 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./qemu-guest.nix
|
|
];
|
|
|
|
config = {
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-label/nixos";
|
|
fsType = "ext4";
|
|
autoResize = true;
|
|
};
|
|
};
|
|
}
|