NOflake/users/tao.nix

50 lines
908 B
Nix
Raw Normal View History

2023-07-19 00:52:04 -07:00
{ pkgs, ... }:
2023-07-11 00:38:39 -07:00
{
users.users.tao.packages = with pkgs; [
2023-07-18 11:12:40 -07:00
darktable
2023-07-11 00:38:39 -07:00
deluge
discord
2023-08-04 04:01:36 -07:00
expressvpn
2023-07-11 00:38:39 -07:00
# fractal
2023-07-18 11:12:40 -07:00
gh
2023-07-18 22:14:59 -07:00
# gnumake
# pkg-config
# libftdi
# libusb
2023-07-11 00:38:39 -07:00
keepassxc
libsForQt5.kdeconnect-kde
2023-07-17 16:41:11 -07:00
# nix-prefetch-scripts
unstable.starship
2023-07-11 00:38:39 -07:00
tio
2023-07-20 09:23:47 -07:00
partition-manager
2023-07-11 00:38:39 -07:00
unstable.nushell
unstable.prusa-slicer
2023-07-19 00:52:04 -07:00
unstable.wezterm
2023-07-11 00:38:39 -07:00
virt-manager
zoxide
];
2023-07-23 20:21:08 -07:00
2023-08-04 04:01:36 -07:00
services.expressvpn.enable = true;
2023-07-20 15:27:53 -07:00
virtualisation.libvirtd.enable = true;
programs.dconf.enable = true;
2023-07-11 00:38:39 -07:00
services.syncthing = {
enable = true;
user = "tao";
dataDir = "/home/tao/Sync";
configDir = "/home/tao/.config/syncthing";
};
2023-07-17 16:41:11 -07:00
fonts.fonts = with pkgs; [
(nerdfonts.override { fonts = [ "FiraCode" ]; })
noto-fonts-cjk
noto-fonts-emoji
];
2023-07-11 00:38:39 -07:00
users.users.tao = {
isNormalUser = true;
extraGroups = [ "wheel" "libvirtd" "dialout" ];
};
}