1
0
Fork 0
mirror of https://github.com/ryanccn/flake.git synced 2025-12-06 08:10:43 +01:00

chore: update

This commit is contained in:
Ryan Cao 2025-09-27 17:59:32 +08:00
parent 26815c337f
commit 6c6f264768
Signed by: ryanccn
GPG key ID: F605AB4AF937D5D0
19 changed files with 187 additions and 103 deletions

View file

@ -15,7 +15,7 @@ let
};
settings = {
theme = "catppuccin-${config.catppuccin.flavor}";
theme = "Catppuccin ${lib.toSentenceCase config.catppuccin.flavor}";
window-colorspace = "display-p3";
font-family = "Ryan Term";

View file

@ -127,7 +127,7 @@ in
# "editor.minimap.renderCharacters" = false;
"workbench.editor.highlightModifiedTabs" = true;
"workbench.editor.empty.hint" = "hidden";
"chat.commandCenter.enabled" = false;
"chat.disableAIFeatures" = true;
"editor.inlineSuggest.enabled" = true;
"editor.tabSize" = 2;

View file

@ -8,6 +8,7 @@
accent = "sapphire";
bat.enable = true;
eza.enable = true;
fish.enable = true;
fzf.enable = true;
glamour.enable = true;

View file

@ -2,10 +2,7 @@
#
# SPDX-License-Identifier: Apache-2.0
{
inputs,
...
}:
{ inputs, ... }:
{
programs.home-manager.enable = true;

View file

@ -2,11 +2,7 @@
#
# SPDX-License-Identifier: Apache-2.0
{
pkgs,
inputs,
...
}:
{ pkgs, inputs, ... }:
let
pkgs' = inputs.self.packages.${pkgs.stdenvNoCC.hostPlatform.system};
in

View file

@ -3,7 +3,6 @@
# SPDX-License-Identifier: Apache-2.0
set -gx SSH_AUTH_SOCK "$HOME/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock"
set -gx LS_COLORS "$(vivid generate catppuccin-macchiato)"
/opt/homebrew/bin/brew shellenv | source

View file

@ -3,8 +3,6 @@
# SPDX-License-Identifier: Apache-2.0
if status is-interactive
nix-your-shell fish | source
if test -d "$(brew --prefix)/share/fish/completions"
set -p fish_complete_path "$(brew --prefix)/share/fish/completions"
end

View file

@ -2,14 +2,16 @@
#
# SPDX-License-Identifier: Apache-2.0
{ config, ... }:
{
programs.go = {
enable = true;
goPath = ".local/share/go";
};
home.sessionVariables = {
GOTOOLCHAIN = "local";
GOPROXY = "direct";
env = {
GOPATH = "${config.xdg.dataHome}/go";
GOTOOLCHAIN = "local";
GOPROXY = "direct";
};
telemetry.mode = "off";
};
}

View file

@ -2,11 +2,7 @@
#
# SPDX-License-Identifier: Apache-2.0
{
inputs,
pkgs,
...
}:
{ inputs, pkgs, ... }:
{
programs.helix = {
enable = true;

View file

@ -2,11 +2,7 @@
#
# SPDX-License-Identifier: Apache-2.0
{
pkgs,
inputs,
...
}:
{ inputs, pkgs, ... }:
let
rust-bin = inputs.rust-overlay.lib.mkRustBin { } pkgs;
in