This commit is contained in:
Tao Tien 2024-03-15 21:39:09 -07:00
parent cb9b393cf0
commit de8c66d530
5 changed files with 21 additions and 25 deletions

View file

@ -58,11 +58,6 @@
trunk trunk
]; ];
# nixpkgs.config.permittedInsecurePackages = [
# # etcher
# "electron-19.1.9"
# ];
services.udev.extraRules = '' services.udev.extraRules = ''
SUBSYSTEM == "tty", GROUP="dialout", ATTRS{interface}=="Black Magic GDB Server", SYMLINK+="ttyBmpGdb" SUBSYSTEM == "tty", GROUP="dialout", ATTRS{interface}=="Black Magic GDB Server", SYMLINK+="ttyBmpGdb"
SUBSYSTEM == "tty", GROUP="dialout", ATTRS{interface}=="Black Magic UART Port", SYMLINK+="ttyBmpTarg" SUBSYSTEM == "tty", GROUP="dialout", ATTRS{interface}=="Black Magic UART Port", SYMLINK+="ttyBmpTarg"

View file

@ -12,15 +12,12 @@
cifs-utils cifs-utils
du-dust du-dust
exfatprogs exfatprogs
ffmpeg
firefox
git git
inputs.helix.packages.${pkgs.system}.default inputs.helix.packages.${pkgs.system}.default
# libthai # libthai
localsend localsend
macchina macchina
mesa mesa
mpv
ouch ouch
ripgrep ripgrep
rustdesk rustdesk
@ -29,8 +26,9 @@
tree tree
wezterm wezterm
# wget # wget
yt-dlp # yt-dlp
zellij # zellij
pueue
zstd zstd
]; ];
programs.partition-manager.enable = lib.mkDefault true; programs.partition-manager.enable = lib.mkDefault true;

View file

@ -9,7 +9,7 @@
# nvidia-vaapi-driver # nvidia-vaapi-driver
# foldingathome # foldingathome
gwe gwe
mesa # mesa
openrgb openrgb
snapper snapper
]; ];

View file

@ -5,6 +5,9 @@
... ...
}: { }: {
users.users.tao.packages = with pkgs; [ users.users.tao.packages = with pkgs; [
ffmpeg
firefox
yt-dlp
# birdtray # birdtray
# cider # cider
# enchant # enchant
@ -51,13 +54,13 @@
libsForQt5.plasma-integration libsForQt5.plasma-integration
libsForQt5.plasma-vault libsForQt5.plasma-vault
miniserve miniserve
mpv
nushell nushell
obs-studio obs-studio
onlyoffice-bin onlyoffice-bin
pandoc pandoc
pipe-rename pipe-rename
prusa-slicer prusa-slicer
pueue
qmk qmk
qmk-udev-rules qmk-udev-rules
ripgrep-all ripgrep-all

View file

@ -42,19 +42,19 @@
settings = builtins.fromTOML (builtins.readFile ./starship.toml); settings = builtins.fromTOML (builtins.readFile ./starship.toml);
}; };
taskwarrior = { # taskwarrior = {
enable = true; # enable = true;
}; # };
wezterm = { wezterm = {
enable = true; enable = true;
extraConfig = builtins.readFile ./wezterm.lua; extraConfig = builtins.readFile ./wezterm.lua;
}; };
zellij = { # zellij = {
enable = true; # enable = true;
settings = {}; # settings = {};
}; # };
zoxide = { zoxide = {
enable = true; enable = true;
@ -62,12 +62,12 @@
}; };
}; };
services = { # services = {
pueue = { # pueue = {
enable = true; # enable = true;
settings = {}; # settings = {};
}; # };
}; # };
home.username = "tao"; home.username = "tao";
home.homeDirectory = "/home/tao"; home.homeDirectory = "/home/tao";