The nixpad rabbit hole

This commit is contained in:
2025-12-30 07:07:10 +02:00
parent 6a40fb1f5a
commit adddfdd16d
12 changed files with 314 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
{ config, lib, pkgs, ... }:
{
# Enable the GNOME Desktop Environment.
services.displayManager.gdm.enable = true;
services.desktopManager.gnome.enable = true;
services.fprintd.enable = true;
# https://github.com/NixOS/nixpkgs/issues/149812
environment.extraInit = ''
export XDG_DATA_DIRS="$XDG_DATA_DIRS:${pkgs.gtk3}/share/gsettings-schemas/${pkgs.gtk3.name}"
'';
environment.systemPackages = with pkgs; [
gnomeExtensions.just-perfection
];
programs.dconf.profiles.user.databases = [
{
lockAll = true; # prevents overriding
settings = {
"org/gnome/desktop/interface" = {
accent-color = "purple";
};
"org/gnome/desktop/input-sources" = {
xkb-options = [ "caps:escape" ];
};
};
}
];
}