1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-05-04 04:33:09 +00:00
Signed-off-by: roxwize <rae@roxwize.xyz>
This commit is contained in:
Rae 5e 2025-01-24 16:08:11 -05:00
parent 062c447374
commit c38f040574
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
21 changed files with 5 additions and 4 deletions

33
nixos/home/dconf.nix Normal file
View file

@ -0,0 +1,33 @@
{ ... }: {
dconf.settings = {
"io/elementary/code/settings" = {
font = "Fira Code Light 10";
use-system-font = false;
};
"net/launchpad/plank/docks/dock1" = {
dock-items = [
"gala-multitaskingview.dockitem"
"firefox.dockitem"
"io.elementary.terminal.dockitem"
"codium.dockitem"
"io.elementary.settings.dockitem"
];
};
"org/gnome/desktop/background" = {
picture-uri = "file://" + builtins.toString /home/rae/.dotfiles/assets/wallpapers/current;
};
"org/gnome/desktop/interface" = {
accent-color = "blue";
color-scheme = "prefer-dark";
};
"org/gnome/desktop/wm/preferences" = {
button-layout = ":minimize,maximize,close";
};
"org/pantheon/desktop/gala/appearance" = {
button-layout = ":minimize,maximize,close";
};
"org/pantheon/desktop/gala/behavior" = {
hotcorner-bottomright = "show-workspace-view";
};
};
}