NOflake/users/tao.nix
2023-08-22 10:22:47 -07:00

51 lines
952 B
Nix

{ pkgs, ... }:
{
users.users.tao.packages = with pkgs; [
bottles
darktable
deluge
discord
# expressvpn
# fractal
gh
# gnumake
# pkg-config
# libftdi
# libusb
keepassxc
libsForQt5.kdeconnect-kde
# nix-prefetch-scripts
unstable.starship
rustdesk
tio
partition-manager
unstable.nushell
unstable.prusa-slicer
unstable.wezterm
virt-manager
zoxide
];
# services.expressvpn.enable = true;
virtualisation.libvirtd.enable = true;
programs.dconf.enable = true;
services.syncthing = {
enable = true;
user = "tao";
dataDir = "/home/tao/Sync";
configDir = "/home/tao/.config/syncthing";
};
fonts.fonts = with pkgs; [
(nerdfonts.override { fonts = [ "FiraCode" ]; })
noto-fonts-cjk
noto-fonts-emoji
];
users.users.tao = {
isNormalUser = true;
extraGroups = [ "wheel" "libvirtd" "dialout" "scanner" "lp" ];
};
}