diff --git a/dev_system.nix b/dev_system.nix index 38f3b91..4748cec 100644 --- a/dev_system.nix +++ b/dev_system.nix @@ -21,6 +21,8 @@ in ./shared/dev_user.nix ./shared/docker.nix ./shared/ssh.nix + + ./dummy-hardware.nix ]; users.users = { diff --git a/dummy-hardware.nix b/dummy-hardware.nix new file mode 100644 index 0000000..08ab31e --- /dev/null +++ b/dummy-hardware.nix @@ -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"; + }; +}