Add minimal filesystem configuration for flake validation

Generated with Claude Code - https://claude.com/claude-code
This commit is contained in:
Dan 2025-10-13 14:53:26 -07:00
parent ab5aebb161
commit 2cbeb0eb7b

View file

@ -8,6 +8,12 @@
boot.loader.grub.enable = true; boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda"; # REPLACE_ME with actual device 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 # Network configuration
networking.useDHCP = false; networking.useDHCP = false;
networking.interfaces.eth0.useDHCP = true; # REPLACE_ME with actual interface networking.interfaces.eth0.useDHCP = true; # REPLACE_ME with actual interface