From 1fd2d594646f13a62d4658a7f377216b2f1ab719 Mon Sep 17 00:00:00 2001 From: Tao Tien <29749622+taotien@users.noreply.github.com> Date: Sun, 18 Feb 2024 02:31:04 -0800 Subject: [PATCH] mounts --- extras/uwuraid.nix | 2 ++ systems/NOcomputer.nix | 6 +++--- users/tao.nix | 1 + users/tao/wezterm.lua | 2 ++ 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/extras/uwuraid.nix b/extras/uwuraid.nix index 8100637..17537a3 100644 --- a/extras/uwuraid.nix +++ b/extras/uwuraid.nix @@ -9,6 +9,7 @@ in [ (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/everything"; where = "/mnt/uwuraid/everything"; }) (opts // { what = "//100.97.47.81/isos"; where = "/mnt/uwuraid/isos"; }) @@ -28,6 +29,7 @@ in [ (opts // { where = "/mnt/uwuraid/anime"; }) + (opts // { where = "/mnt/uwuraid/appdata"; }) (opts // { where = "/mnt/uwuraid/backup"; }) (opts // { where = "/mnt/uwuraid/everything"; }) (opts // { where = "/mnt/uwuraid/isos"; }) diff --git a/systems/NOcomputer.nix b/systems/NOcomputer.nix index 2b71b62..097f221 100644 --- a/systems/NOcomputer.nix +++ b/systems/NOcomputer.nix @@ -4,7 +4,7 @@ autoLogin.user = "tao"; }; - environment.systemPackages = with pkgs;[ + environment.systemPackages = with pkgs; [ # egl-wayland # mesa # nvidia-vaapi-driver @@ -81,8 +81,8 @@ # 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.kernelModules = [ "i2c-dev" "kvm-amd" ]; boot.kernelParams = [ "nvidia-drm.modeset=1" ]; diff --git a/users/tao.nix b/users/tao.nix index 346254f..27c9285 100644 --- a/users/tao.nix +++ b/users/tao.nix @@ -1,5 +1,6 @@ { inputs, pkgs, ... }: { users.users.tao.packages = with pkgs; [ + miniserve # wkhtmltopdf # vial # cider diff --git a/users/tao/wezterm.lua b/users/tao/wezterm.lua index 800472b..93b5ad9 100644 --- a/users/tao/wezterm.lua +++ b/users/tao/wezterm.lua @@ -3,4 +3,6 @@ return { color_scheme = "Dracula", warn_about_missing_glyphs = false, check_for_updates = false, + + hide_tab_bar_if_only_one_tab = true, }