nixos/home/personal-desktop.nix
2021-11-19 10:58:20 +01:00

31 lines
589 B
Nix

{config, pkgs, ...}:
{
imports = [
./common.nix
];
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [
keeweb
nextcloud-client
signal-desktop
tdesktop
vscode
youtube-dl
];
programs.git = {
enable = true;
userName = "Andreas Zweili";
userEmail = "andreas@zweili.ch";
delta = {
enable = true;
options = {
navigate = true;
line-numbers = true;
syntax-theme = "GitHub";
};
};
};
# raw config files
home.file.".config/qtile/config.py".source = ./desktop/qtile/config.py;
}