This commit is contained in:
Tao Tien 2024-05-16 03:51:55 -07:00
parent 8f681ffbac
commit 913d061549
5 changed files with 31 additions and 22 deletions

View file

@ -37,16 +37,17 @@
gdb gdb
gnumake gnumake
# java (DSA) # # java (DSA)
gradle # gradle
jdt-language-server # jdt-language-server
jetbrains.idea-community # jetbrains.idea-community
temurin-bin-17 # maven
# temurin-bin-17
# michael (webdev) # # michael (webdev)
nodejs # nodejs
vscode-langservers-extracted # vscode-langservers-extracted
nodePackages_latest.typescript-language-server # nodePackages_latest.typescript-language-server
# nix # nix
nil nil

View file

@ -121,8 +121,6 @@
time.timeZone = lib.mkDefault "US/Pacific"; time.timeZone = lib.mkDefault "US/Pacific";
# services.automatic-timezoned.enable = lib.mkDefault true; # services.automatic-timezoned.enable = lib.mkDefault true;
# i18n.defaultLocale = "en_US.utf8";
# i18n.supportedLocales = ["all"];
# i18n.extraLocaleSettings = { # i18n.extraLocaleSettings = {
# LC_CTYPE = "en_US.UTF-8"; # LC_CTYPE = "en_US.UTF-8";
# LC_MESSAGES = "en_US.UTF-8"; # LC_MESSAGES = "en_US.UTF-8";

View file

@ -4,16 +4,16 @@
pkgs, pkgs,
... ...
}: { }: {
boot.kernelPatches = [ # boot.kernelPatches = [
(lib.mkIf (lib.versionOlder pkgs.linuxPackages_latest.kernel.version "6.9") # (lib.mkIf (lib.versionOlder pkgs.linuxPackages_latest.kernel.version "6.9")
{ # {
name = "cros_ec_lpc"; # name = "cros_ec_lpc";
patch = pkgs.fetchpatch { # patch = pkgs.fetchpatch {
url = "https://patchwork.kernel.org/series/840830/mbox/"; # url = "https://patchwork.kernel.org/series/840830/mbox/";
sha256 = "sha256-7jSEAGInFC+a+ozCyD4dFz3Qgh2JrHskwz7UfswizFw="; # sha256 = "sha256-7jSEAGInFC+a+ozCyD4dFz3Qgh2JrHskwz7UfswizFw=";
}; # };
}) # })
]; # ];
# nixpkgs.overlays = [ # nixpkgs.overlays = [
# (final: prev: { # (final: prev: {
# libinput = prev.libinput.overrideAttrs (old: { # libinput = prev.libinput.overrideAttrs (old: {

View file

@ -24,9 +24,17 @@ in {
}; };
programs = { programs = {
bat = {
enable = true;
config = {
theme = "gruvbox-dark";
};
};
bottom = { bottom = {
enable = true; enable = true;
settings = { settings = {
color = "gruvbox";
flags = { flags = {
battery = battery =
if lib.strings.hasPrefix "NOlaptop" (builtins.readFile /etc/hostname) if lib.strings.hasPrefix "NOlaptop" (builtins.readFile /etc/hostname)

View file

@ -19,7 +19,7 @@ def l [
path: path = "." path: path = "."
] { ] {
ls $path ls $path
| sort-by type name -i | sort-by type name -i -n
} }
@ -89,6 +89,8 @@ def tsr [] {
} }
alias ts = tailscale alias ts = tailscale
alias tss = tailscale status alias tss = tailscale status
alias tsu = tailscale up
alias tsd = tailscale down
alias tsx = tailscale exit-node list alias tsx = tailscale exit-node list