diff options
author | Ben Sima <ben@bsima.me> | 2020-04-02 23:45:04 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-04-02 23:45:04 -0700 |
commit | 65c2b30a288385cf3df4027d50080ac595bbcf83 (patch) | |
tree | 391aa2ea046935e4bd5463abf8979633697b99f5 /Com/Simatime/Cloud/hardware.nix | |
parent | 4ef954f7b3e9b5d99d1030843c2633dbd76f37c0 (diff) |
Reorganize and comment some of the nix code
Diffstat (limited to 'Com/Simatime/Cloud/hardware.nix')
-rw-r--r-- | Com/Simatime/Cloud/hardware.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Com/Simatime/Cloud/hardware.nix b/Com/Simatime/Cloud/hardware.nix new file mode 100644 index 0000000..8c88cb7 --- /dev/null +++ b/Com/Simatime/Cloud/hardware.nix @@ -0,0 +1,6 @@ +{ ... }: +{ + imports = [ <nixpkgs/nixos/modules/profiles/qemu-guest.nix> ]; + boot.loader.grub.device = "/dev/vda"; + fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; }; +} |