nixbook: add postman, gofmt, difftastic

This commit is contained in:
tristan 2024-10-24 10:45:15 +01:00
parent 825381f98b
commit a8c80aa3d5
9 changed files with 57 additions and 3 deletions

View file

@ -0,0 +1,14 @@
{config, ...}: let
user = config.user;
in
{
users.users.${user}.extraGroups = ["libvirtd" "kvm"];
virtualisation.libvirtd = {
enable = true;
nss = {
enable = true;
enableGuest = true;
};
};
programs.virt-manager.enable = true;
}