nixbook: add postman, gofmt, difftastic
This commit is contained in:
parent
825381f98b
commit
a8c80aa3d5
9 changed files with 57 additions and 3 deletions
|
|
@ -96,6 +96,7 @@ in {
|
|||
unzip
|
||||
fzf
|
||||
sops
|
||||
lsof
|
||||
];
|
||||
|
||||
boot.kernel.sysctl = {
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@ in {
|
|||
# nonfree vscode required for dev containers
|
||||
"vscode"
|
||||
"steam-run"
|
||||
"postman"
|
||||
];
|
||||
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
|
|
|
|||
14
nixos/programs/libvertd.nix
Normal file
14
nixos/programs/libvertd.nix
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue