add work related programmes

This commit is contained in:
Andreas Zweili 2021-12-08 09:46:24 +01:00
parent 9464e1a820
commit 2fd6ed3336
2 changed files with 9 additions and 1 deletions

View File

@ -4,13 +4,13 @@
./common.nix
./common/git/git.nix
./obsidian.nix
./work-desktop.nix
];
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [
keeweb
signal-desktop
tdesktop
vagrant
vscode
youtube-dl
];

View File

@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [
dbeaver
vagrant
];
}