This commit is contained in:
Till 2023-12-14 18:09:34 +01:00
parent 6a475a7430
commit b5d14a8b64
9 changed files with 173 additions and 34 deletions

18
alt/desktop/default.nix Normal file
View file

@ -0,0 +1,18 @@
{ config, pkgs, ... }:
{
home.pointerCursor = {
name = "Adwaita";
package = pkgs.gnome.adwaita-icon-theme;
size = 32;
};
dconf.settings = {
"org/gnome-shell" = {
enabled-extensions = [
"run-or-raise@edvard.cz"
];
};
};
xdg.configFile."run-or-raise/shortcuts.conf".source = ./run-or-raise.conf;
}