Compare commits

3 Commits

Author SHA1 Message Date
5f79421d9e code 2026-03-04 10:39:37 -06:00
5eaf1cce2a gnome notch 2026-03-04 10:33:51 -06:00
85b35eaedc gnome notch 2026-03-04 10:33:27 -06:00
4 changed files with 23 additions and 7 deletions

View File

@@ -134,6 +134,8 @@ in
iwd iwd
orca-slicer orca-slicer
vscodium vscodium
gnomeExtensions.notch-clock-offset
]); ]);
services = { services = {
@@ -148,13 +150,20 @@ in
}; };
dconf = { dconf = {
enable = true;
settings = { settings = {
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0".name = "Keyboard Backlight +"; "org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0".name = "Keyboard Backlight +";
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0".binding = "<Shift><Super>MonBrightnessUp"; "org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0".binding = "<Super>MonBrightnessUp";
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0".command = "brightnessctl -d kbd_backlight +10"; "org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0".command = "brightnessctl -d kbd_backlight s +10";
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1".name = "Keyboard Backlight -"; "org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1".name = "Keyboard Backlight -";
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1".binding = "<Shift><Super>MonBrightnessDown"; "org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1".binding = "<Super>MonBrightnessDown";
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1".command = "brightnessctl -d kbd_backlight 10-"; "org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1".command = "brightnessctl -d kbd_backlight s 10-";
"org/gnome/shell".enabled-extensions = [
"notch-clock-offset@christophbrill.de"
];
"org/gnome/shell/extensions/notch-clock-offset".percent = 40;
"org/gnome/settings-daemon/plugins/media-keys".custom-keybindings = [ "org/gnome/settings-daemon/plugins/media-keys".custom-keybindings = [
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/" "/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/"

View File

@@ -62,7 +62,7 @@ in
"allowlockedremotedesktop@kamens.us" "allowlockedremotedesktop@kamens.us"
"appindicatorsupport@rgcjonas.gmail.com" "appindicatorsupport@rgcjonas.gmail.com"
"caffeine@patapon.info" "caffeine@patapon.info"
# "user-theme@gnome-shell-extensions.gcampax.github.com" "user-theme@gnome-shell-extensions.gcampax.github.com"
"tiling-assistant@leleat-on-github" "tiling-assistant@leleat-on-github"
"dash-to-dock@micxgx.gmail.com" "dash-to-dock@micxgx.gmail.com"
"BingWallpaper@ineffable-gmail.com" "BingWallpaper@ineffable-gmail.com"

View File

@@ -74,10 +74,10 @@ in
userSettings = { userSettings = {
"database-client.autoSync" = true;
"editor" = { "editor" = {
"defaultFormatter" = "brettm12345.nixfmt-vscode"; "defaultFormatter" = "brettm12345.nixfmt-vscode";
"fontFamily" = "fira-code-nerd, FiraCode Nerd Font, Consolas, 'Courier New', monospace";
"fontLigatures" = true;
"renderWhitespace" = "all"; "renderWhitespace" = "all";
}; };
@@ -86,6 +86,10 @@ in
"confirmDragAndDrop" = false; "confirmDragAndDrop" = false;
}; };
"extensions." = {
"autoCheckUpdates" = false;
};
"git" = { "git" = {
"confirmSync" = false; "confirmSync" = false;
"enableSmartCommit" = true; "enableSmartCommit" = true;
@@ -141,6 +145,8 @@ in
"security.workspace.trust.untrustedFiles" = "open"; "security.workspace.trust.untrustedFiles" = "open";
"update.mode" = "none";
"workbench" = { "workbench" = {
"colorCustomizations" = null; "colorCustomizations" = null;
"editorAssociations" = { "editorAssociations" = {

View File

@@ -24,6 +24,7 @@ in
kernelParams = [ kernelParams = [
"apple_dcp.show_notch=1" "apple_dcp.show_notch=1"
"appledrm.show_notch=1"
"melt_my_mac=1" # enable fan control "melt_my_mac=1" # enable fan control
]; ];