feat: update

This commit is contained in:
2025-07-25 21:22:24 +08:00
parent 0b413e227c
commit 141f6f1b96
15 changed files with 61 additions and 164 deletions

View File

@@ -1,4 +1,4 @@
## Configuration file for CAVA. Default values are commented out. Use either ';' or '#' for commenting.
#t Configuration rile for CAVA. Default values are commented out. Use either ';' or '#' for commenting.
[general]

View File

@@ -199,7 +199,7 @@ net_auto = False
net_sync = True
#* Starts with the Network Interface specified here.
net_iface = "eth0"
net_iface = "wlan0"
#* Show battery stats in top right if battery is present.
show_battery = False

View File

@@ -15,11 +15,11 @@ lib.my.makeHomeProgramConfig {
extraConfig = {
my.home = {
programs.vscode = {
package = pkgs.vscodium;
package = pkgs.vscode;
};
};
my.persist.homeDirs = [
".config/VSCodium"
".config/VSCode "
".vscode-oss"
];
};

View File

@@ -16,6 +16,7 @@ lib.my.makeSwitch {
rust.enable = true;
lua.enable = true;
qml.enable = true;
java.enable = true;
};
};
}

View File

@@ -0,0 +1,22 @@
{
config,
lib,
pkgs,
...
}:
lib.my.makeSwitch {
inherit config;
optionName = "java";
optionPath = [
"coding"
"langs"
"java"
];
config' = {
my.home = {
home.packages = with pkgs; [
openjdk24
];
};
};
}

View File

@@ -1,7 +1,6 @@
{
config,
lib,
pkgs,
...
}:
lib.my.makeHomeProgramConfig {
@@ -14,7 +13,6 @@ lib.my.makeHomeProgramConfig {
];
extraConfig = {
my.home.programs.chromium = {
package = pkgs.ungoogled-chromium;
extensions = [
{
id = "jokpcbcafcbkjgcbjdcbadhfhimkafab"; # BitWarden

View File

@@ -15,8 +15,6 @@ lib.my.makeSwitch {
config' = {
my.home.home.packages = with pkgs; [
hmcl
openjdk21
];
my.persist.homeDirs = [

View File

@@ -10,7 +10,6 @@
input = {
focus-follows-mouse = {
enable = true;
max-scroll-amount = "40%";
};
workspace-auto-back-and-forth = true;
};