nixos/home-manager/desktop.nix

24 lines
493 B
Nix
Raw Normal View History

2021-11-24 09:46:16 +01:00
{ config, pkgs, ... }:
2021-11-22 14:48:47 +01:00
{
2021-11-16 14:25:20 +01:00
imports = [
./common.nix
2021-11-22 14:48:47 +01:00
./common/git/git.nix
2021-11-16 14:25:20 +01:00
];
2021-11-18 20:55:22 +01:00
nixpkgs.config.allowUnfree = true;
2021-11-16 18:49:24 +01:00
home.packages = with pkgs; [
2021-11-18 20:13:49 +01:00
keeweb
2021-11-16 21:16:40 +01:00
nextcloud-client
2021-11-18 08:41:00 +01:00
signal-desktop
tdesktop
2021-11-18 20:55:22 +01:00
vscode
2021-11-18 20:46:37 +01:00
youtube-dl
2021-11-16 18:49:24 +01:00
];
2021-11-22 14:48:47 +01:00
programs.git.userEmail = "andreas@zweili.ch";
2021-11-16 14:25:20 +01:00
# raw config files
2021-11-19 16:29:30 +01:00
home.file.".config/qtile".source = ./desktop/qtile;
2021-11-22 17:30:13 +01:00
home.file.".xprofile".source = ./desktop/xprofile;
2021-11-22 17:47:03 +01:00
home.file.".config/terminator".source = ./desktop/terminator;
2021-11-16 14:25:20 +01:00
}