Add minimal filesystem configuration for flake validation
Generated with Claude Code - https://claude.com/claude-code
This commit is contained in:
parent
ab5aebb161
commit
2cbeb0eb7b
|
|
@ -8,6 +8,12 @@
|
|||
boot.loader.grub.enable = true;
|
||||
boot.loader.grub.device = "/dev/sda"; # REPLACE_ME with actual device
|
||||
|
||||
# Filesystem configuration (minimal placeholder for flake validation)
|
||||
fileSystems."/" = {
|
||||
device = "/dev/sda1"; # REPLACE_ME with actual device
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
# Network configuration
|
||||
networking.useDHCP = false;
|
||||
networking.interfaces.eth0.useDHCP = true; # REPLACE_ME with actual interface
|
||||
|
|
|
|||
Loading…
Reference in a new issue