NOflake/users/tao.nix

82 lines
1.5 KiB
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-09-30 22:09:06 -07:00
appimage-run
nixpkgs-fmt
onlyoffice-bin
ripgrep-all
snapper
unstable.oculante
2023-08-04 04:34:30 -07:00
# expressvpn
2023-07-11 00:38:39 -07:00
# fractal
2023-07-18 22:14:59 -07:00
# gnumake
# libftdi
# libusb
2023-07-17 16:41:11 -07:00
# nix-prefetch-scripts
2023-09-28 23:33:56 -07:00
# pkg-config
aspell
aspellDicts.en
# enchant
# nuspell
# hunspellDicts.en-us-large
2023-09-30 22:09:06 -07:00
rustdesk
bottles
cider
2023-09-28 23:33:56 -07:00
darktable
deluge
2023-09-30 22:09:06 -07:00
discord
2023-09-28 23:33:56 -07:00
gh
keepassxc
libsForQt5.kcharselect
libsForQt5.kdeconnect-kde
2023-09-30 21:59:04 -07:00
# mdbook
# partition-manager
# slack
2023-09-28 23:33:56 -07:00
tectonic
texlab
tio
2023-09-30 22:09:06 -07:00
unstable.typst
2023-09-28 23:33:56 -07:00
ocs-url
typst-lsp
2023-09-30 22:09:06 -07:00
unstable.nushell
unstable.prusa-slicer
unstable.starship
unstable.wezterm
2023-07-11 00:38:39 -07:00
virt-manager
2023-09-30 22:09:06 -07:00
zoom-us
2023-07-11 00:38:39 -07:00
zoxide
2023-09-28 23:33:56 -07:00
obs-studio
2023-07-11 00:38:39 -07:00
];
2023-09-30 22:09:06 -07:00
programs.nushell.enable = true;
environment.shells = with pkgs; [ unstable.nushell ];
2023-07-23 20:21:08 -07:00
2023-08-04 04:34:30 -07:00
# services.expressvpn.enable = true;
2023-08-04 04:01:36 -07:00
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;
2023-08-09 19:05:53 -07:00
extraGroups = [ "wheel" "libvirtd" "dialout" "scanner" "lp" ];
2023-09-30 22:09:06 -07:00
shell = pkgs.unstable.nushell;
2023-07-11 00:38:39 -07:00
};
2023-09-28 23:33:56 -07:00
# i18n.inputMethod = {
# enabled = "fcitx5";
# fcitx5.addons = with pkgs; [ fcitx5-mozc fcitx5-chewing fcitx5-chinese-addons fcitx5-rime ];
# };
2023-07-11 00:38:39 -07:00
}