feat: add minimal dummy hardware config (to be replaced)
This commit is contained in:
parent
7600b36484
commit
cdd41f9979
2 changed files with 16 additions and 0 deletions
|
@ -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
14
dummy-hardware.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue