feat: update
This commit is contained in:
@@ -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]
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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"
|
||||
];
|
||||
};
|
||||
|
||||
@@ -16,6 +16,7 @@ lib.my.makeSwitch {
|
||||
rust.enable = true;
|
||||
lua.enable = true;
|
||||
qml.enable = true;
|
||||
java.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
22
modules/coding/langs/java.nix
Normal file
22
modules/coding/langs/java.nix
Normal 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
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -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
|
||||
|
||||
@@ -15,8 +15,6 @@ lib.my.makeSwitch {
|
||||
config' = {
|
||||
my.home.home.packages = with pkgs; [
|
||||
hmcl
|
||||
|
||||
openjdk21
|
||||
];
|
||||
|
||||
my.persist.homeDirs = [
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
input = {
|
||||
focus-follows-mouse = {
|
||||
enable = true;
|
||||
max-scroll-amount = "40%";
|
||||
};
|
||||
workspace-auto-back-and-forth = true;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user