back to virtual box and other fixes
This commit is contained in:
parent
5a29142ddb
commit
bc2c8e5f04
7 changed files with 48 additions and 29 deletions
|
|
@ -111,4 +111,11 @@ home-manager.users.jsutter = {
|
|||
};
|
||||
};
|
||||
};
|
||||
# GNUPG Stuff
|
||||
services.pcscd.enable = true;
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
pinentryFlavor = "gnome3";
|
||||
enableSSHSupport = true;
|
||||
};
|
||||
}
|
||||
|
|
@ -16,4 +16,11 @@
|
|||
environment.systemPackages = with pkgs; [
|
||||
spectacle
|
||||
];
|
||||
# GNUPG Stuff
|
||||
services.pcscd.enable = true;
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
pinentryFlavor = "qt";
|
||||
enableSSHSupport = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
20
modules/virtualization.nix
Normal file
20
modules/virtualization.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{ config, pkgs, home-manager, ... }:
|
||||
|
||||
{
|
||||
virtualisation = {
|
||||
docker = {
|
||||
enable = true;
|
||||
autoPrune = {
|
||||
enable = true;
|
||||
dates = "weekly";
|
||||
};
|
||||
};
|
||||
libvirtd.enable = true;
|
||||
spiceUSBRedirection.enable = true;
|
||||
virtualbox.host = {
|
||||
enable = true;
|
||||
enableExtensionPack = true;
|
||||
};
|
||||
};
|
||||
users.extraGroups.vboxusers.members = [ "jsutter" ];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue