This commit is contained in:
Tao Tien 2024-02-18 02:31:04 -08:00
parent 1ce8d5a3f7
commit 1fd2d59464
4 changed files with 8 additions and 3 deletions

View file

@ -9,6 +9,7 @@
in in
[ [
(opts // { what = "//100.97.47.81/anime"; where = "/mnt/uwuraid/anime"; }) (opts // { what = "//100.97.47.81/anime"; where = "/mnt/uwuraid/anime"; })
(opts // { what = "//100.97.47.81/appdata"; where = "/mnt/uwuraid/appdata"; })
(opts // { what = "//100.97.47.81/backup"; where = "/mnt/uwuraid/backup"; }) (opts // { what = "//100.97.47.81/backup"; where = "/mnt/uwuraid/backup"; })
(opts // { what = "//100.97.47.81/everything"; where = "/mnt/uwuraid/everything"; }) (opts // { what = "//100.97.47.81/everything"; where = "/mnt/uwuraid/everything"; })
(opts // { what = "//100.97.47.81/isos"; where = "/mnt/uwuraid/isos"; }) (opts // { what = "//100.97.47.81/isos"; where = "/mnt/uwuraid/isos"; })
@ -28,6 +29,7 @@
in in
[ [
(opts // { where = "/mnt/uwuraid/anime"; }) (opts // { where = "/mnt/uwuraid/anime"; })
(opts // { where = "/mnt/uwuraid/appdata"; })
(opts // { where = "/mnt/uwuraid/backup"; }) (opts // { where = "/mnt/uwuraid/backup"; })
(opts // { where = "/mnt/uwuraid/everything"; }) (opts // { where = "/mnt/uwuraid/everything"; })
(opts // { where = "/mnt/uwuraid/isos"; }) (opts // { where = "/mnt/uwuraid/isos"; })

View file

@ -4,7 +4,7 @@
autoLogin.user = "tao"; autoLogin.user = "tao";
}; };
environment.systemPackages = with pkgs;[ environment.systemPackages = with pkgs; [
# egl-wayland # egl-wayland
# mesa # mesa
# nvidia-vaapi-driver # nvidia-vaapi-driver
@ -81,8 +81,8 @@
# wantedBy = [ "default.target" ]; # wantedBy = [ "default.target" ];
# }; # };
# boot.kernelPackages = pkgs.linuxPackages_6_5; # boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelPackages = pkgs.linuxPackages_latest; boot.kernelPackages = pkgs.linuxPackages_zen;
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ]; boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
boot.kernelModules = [ "i2c-dev" "kvm-amd" ]; boot.kernelModules = [ "i2c-dev" "kvm-amd" ];
boot.kernelParams = [ "nvidia-drm.modeset=1" ]; boot.kernelParams = [ "nvidia-drm.modeset=1" ];

View file

@ -1,5 +1,6 @@
{ inputs, pkgs, ... }: { { inputs, pkgs, ... }: {
users.users.tao.packages = with pkgs; [ users.users.tao.packages = with pkgs; [
miniserve
# wkhtmltopdf # wkhtmltopdf
# vial # vial
# cider # cider

View file

@ -3,4 +3,6 @@ return {
color_scheme = "Dracula", color_scheme = "Dracula",
warn_about_missing_glyphs = false, warn_about_missing_glyphs = false,
check_for_updates = false, check_for_updates = false,
hide_tab_bar_if_only_one_tab = true,
} }