From 20087783d335db34d010b4ae9dc48054a4391f8e Mon Sep 17 00:00:00 2001 From: chloe caruso Date: Tue, 22 Jul 2025 15:31:23 -0700 Subject: [PATCH] chloe: more work things --- users/chloe/home.nix | 3 ++- users/chloe/paperback/home.nix | 13 ++++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/users/chloe/home.nix b/users/chloe/home.nix index ee1c0ea..1899685 100644 --- a/users/chloe/home.nix +++ b/users/chloe/home.nix @@ -19,6 +19,7 @@ in ]; # packages to install for desktop environments (non-server) desktop = [ + git-town ]; # packages to install on all servers server = [ ]; @@ -46,7 +47,7 @@ in shader = "cursor-smear-black.glsl"; package = null; settings = { - theme = "catppuccin-latte"; + theme = "light:catppuccin-latte,dark:catppuccin-macchiato"; font-family = "AT Name Mono"; adjust-cursor-thickness = 1; minimum-contrast = 1.1; diff --git a/users/chloe/paperback/home.nix b/users/chloe/paperback/home.nix index 29e72e6..e2ce2a7 100644 --- a/users/chloe/paperback/home.nix +++ b/users/chloe/paperback/home.nix @@ -2,7 +2,16 @@ { # these programs are not globally installed to reduce distractions. # most of these are needed for my work environment. - programs.zed-editor.enable = true; + programs = { + bun.enable = true; + zed-editor.enable = true; + zsh.profileExtra = '' + _bun() { + local context state line + _arguments -C '*:file:_files' + } + ''; + }; home.packages = with pkgs; [ doppler nodejs_22 @@ -13,5 +22,7 @@ yt-dlp spotdl zig + ssm-session-manager-plugin + awscli ]; }