This commit is contained in:
Tao Tien 2023-07-11 00:38:39 -07:00
parent ba1f4a32c4
commit a58f8530b7
8 changed files with 219 additions and 9 deletions

45
users/tao.nix Normal file
View file

@ -0,0 +1,45 @@
{ pkgs, config, ... }:
let
unstableTarball = fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz";
in
{
users.users.tao.packages = with pkgs; [
deluge
discord
elf2uf2-rs
# fractal
gcc
gdb
keepassxc
libsForQt5.kdeconnect-kde
lldb
nix-prefetch-scripts
openrgb
starship
tio
unstable.nushell
unstable.prusa-slicer
virt-manager
zoxide
];
services.syncthing = {
enable = true;
user = "tao";
dataDir = "/home/tao/Sync";
configDir = "/home/tao/.config/syncthing";
};
nixpkgs.config = {
packageOverrides = pkgs: {
unstable = import unstableTarball {
config = config.nixpkgs.config;
};
};
};
users.users.tao = {
isNormalUser = true;
extraGroups = [ "wheel" "libvirtd" "dialout" ];
};
}