NOflake/users/tao.nix

49 lines
824 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-20 14:55:34 -07:00
bottles
2023-07-18 11:12:40 -07:00
darktable
2023-07-11 00:38:39 -07:00
deluge
discord
elf2uf2-rs
# fractal
gcc
2023-07-18 11:12:40 -07:00
gh
2023-07-11 00:38:39 -07:00
gdb
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
lldb
2023-07-17 16:41:11 -07:00
# nix-prefetch-scripts
2023-07-11 00:38:39 -07:00
starship
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
];
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" ];
};
}