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

@ -96,6 +96,7 @@ in {
unzip
fzf
sops
lsof
];
boot.kernel.sysctl = {

View file

@ -11,6 +11,7 @@ in {
# nonfree vscode required for dev containers
"vscode"
"steam-run"
"postman"
];
nixpkgs.config.permittedInsecurePackages = [

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;
}