diff options
author | tv <tv@krebsco.de> | 2016-02-13 18:21:17 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2016-02-13 18:21:17 +0100 |
commit | 0798ee7bfb748e877e89c452e8fa4fa74b159eb7 (patch) | |
tree | 4def0995c72b577db777b318b39293ae6bc1f5b1 /tv/1systems/xu-qemu0.nix | |
parent | 908e2bbf610f05290e4736b7140f9bf3d51198ab (diff) |
xu-qemu0: init
Diffstat (limited to 'tv/1systems/xu-qemu0.nix')
-rw-r--r-- | tv/1systems/xu-qemu0.nix | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tv/1systems/xu-qemu0.nix b/tv/1systems/xu-qemu0.nix new file mode 100644 index 0000000..03ac19c --- /dev/null +++ b/tv/1systems/xu-qemu0.nix @@ -0,0 +1,27 @@ +{ config, lib, pkgs, ... }: + +{ + krebs.hosts.xu-qemu0 = { + cores = 1; + ssh.privkey.path = <secrets/ssh.id_ed25519>; + # cannot define ssh.pubkey without at least one addr or alias + #ssh.pubkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFe51rD0ZqlMXNi/YpapnRzvdzCjI0icmxfCyBLSKG04"; + }; + krebs.build.host = config.krebs.hosts.xu-qemu0; + + imports = [ + <nixpkgs/nixos/modules/profiles/qemu-guest.nix> + ]; + + boot.loader.grub.device = "/dev/sda"; + + fileSystems = { + "/boot" = { + device = "/dev/sda1"; + }; + "/" = { + device = "/dev/sda2"; + fsType = "btrfs"; + }; + }; +} |