dotfiles/os/dev/default.nix

24 lines
707 B
Nix
Raw Normal View History

{ pkgs, lib, config, ... }:
{
2024-10-01 15:17:11 +02:00
config = lib.mkMerge [
(lib.mkIf config.frogeye.dev.docker {
virtualisation.docker.enable = true;
users.users.geoffrey.extraGroups = [ "docker" ];
})
(lib.mkIf config.frogeye.dev.vm {
2024-10-03 13:55:31 +02:00
# Required to mount filesystems. Also need to add
# <binary path="/run/current-system/sw/bin/virtiofsd"/>
# to the VM's filesystem XML config
environment.systemPackages = [ pkgs.virtiofsd ];
2024-10-01 15:17:11 +02:00
virtualisation = {
libvirtd.enable = true;
spiceUSBRedirection.enable = true;
};
users.extraGroups.libvirtd.members = [ "geoffrey" ];
})
{
users.extraGroups.dialout.members = [ "geoffrey" ];
}
2024-10-01 15:17:11 +02:00
];
}