grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / virtualisation / vagrant-guest.nix
blob120a2a2324d213c0ad7e30a67edae9fedb22106d
1 # Minimal configuration that vagrant depends on
3 { config, pkgs, ... }:
4 let
5   # Vagrant uses an insecure shared private key by default, but we
6   # don't use the authorizedKeys attribute under users because it should be
7   # removed on first boot and replaced with a random one. This script sets
8   # the correct permissions and installs the temporary key if no
9   # ~/.ssh/authorized_keys exists.
10   install-vagrant-ssh-key = pkgs.writeScriptBin "install-vagrant-ssh-key" ''
11     #!${pkgs.runtimeShell}
12     if [ ! -e ~/.ssh/authorized_keys ]; then
13       mkdir -m 0700 -p ~/.ssh
14       install -m 0600 <(echo "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA6NF8iallvQVp22WDkTkyrtvp9eWW6A8YVr+kz4TjGYe7gHzIw+niNltGEFHzD8+v1I2YJ6oXevct1YeS0o9HZyN1Q9qgCgzUFtdOKLv6IedplqoPkcmF0aYet2PkEDo3MlTBckFXPITAMzF8dJSIFo9D8HfdOV0IAdx4O7PtixWKn5y2hMNG0zQPyUecp4pzC6kivAIhyfHilFR61RGL+GPXQ2MWZWFYbAGjyiYJnAmCP3NOTd0jMZEnDkbUvxhMmBYSdETk1rRgm+R4LOzFUGaHqHDLKLX+FIPKcF96hrucXzcWyLbIbEgE98OHlnVYCzRdK8jlqm8tehUc9c9WhQ== vagrant insecure public key") ~/.ssh/authorized_keys
15     fi
16   '';
19   # Enable the OpenSSH daemon.
20   services.openssh.enable = true;
22   # Packages used by Vagrant
23   environment.systemPackages = with pkgs; [
24     findutils
25     iputils
26     nettools
27     netcat
28     nfs-utils
29     rsync
30   ];
32   users.extraUsers.vagrant = {
33     isNormalUser    = true;
34     createHome      = true;
35     description     = "Vagrant user account";
36     extraGroups     = [ "users" "wheel" ];
37     home            = "/home/vagrant";
38     password        = "vagrant";
39     useDefaultShell = true;
40     uid             = 1000;
41   };
43   systemd.services.install-vagrant-ssh-key = {
44     description = "Vagrant SSH key install (if needed)";
45     after = [ "fs.target" ];
46     wants = [ "fs.target" ];
47     wantedBy = [ "multi-user.target" ];
48     serviceConfig = {
49       ExecStart = "${install-vagrant-ssh-key}/bin/install-vagrant-ssh-key";
50       User = "vagrant";
51       # So it won't be (needlessly) restarted:
52       RemainAfterExit = true;
53     };
54   };
56   security.sudo.wheelNeedsPassword = false;
57   security.sudo-rs.wheelNeedsPassword = false;