feat: add minimal dummy hardware config (to be replaced)

This commit is contained in:
aviac 2025-04-24 17:59:48 +02:00
parent 7600b36484
commit cdd41f9979
No known key found for this signature in database
GPG key ID: 644781002BDEA982
2 changed files with 16 additions and 0 deletions

View file

@ -21,6 +21,8 @@ in
./shared/dev_user.nix
./shared/docker.nix
./shared/ssh.nix
./dummy-hardware.nix
];
users.users = {

14
dummy-hardware.nix Normal file
View file

@ -0,0 +1,14 @@
# TODO: Copy paste after install nixos, this should include `hardware-configuration.nix`s contents
{
boot.loader.systemd-boot.enable = true;
fileSystems."/" = {
device = "/dev/disk/bazqux";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/foobar";
fsType = "vfat";
};
}