2025-12-03 15:46:37 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
{
|
2026-01-09 13:09:34 +00:00
|
|
|
config = lib.mkIf (lib.elem config.networking.hostName [ "FredOS-Gaming" "FredOS-Macbook" ]) {
|
2026-01-05 09:25:10 +00:00
|
|
|
# Enable Gnome
|
|
|
|
|
services.xserver.enable = true;
|
|
|
|
|
services.displayManager.gdm.enable = true;
|
|
|
|
|
services.desktopManager.gnome.enable = true;
|
2026-01-11 22:31:38 +00:00
|
|
|
services.displayManager.gdm.wayland = true;
|
2026-01-11 22:29:04 +00:00
|
|
|
boot.plymouth.enable = false;
|
2026-01-05 09:25:10 +00:00
|
|
|
|
2026-04-08 19:54:46 +01:00
|
|
|
# Flatpak for ad-hoc app installs via Bazaar
|
|
|
|
|
services.flatpak.enable = true;
|
|
|
|
|
|
Switch to fish shell, ghostty terminal, and simplified prompt
- Replace bash with fish as default shell (all hosts)
- Replace kgx with ghostty (desktop hosts), update Super+T keybinding
- Custom two-line fish prompt: NixOS icon, username, path, hostname, ❯
- Nix-shell awareness, red ❯ on error
- Simplify fastfetch: user@host, OS, kernel, shell, terminal, uptime, memory
- Ghostty config: FiraCode Nerd Font, catppuccin-mocha, no titlebar
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-08 13:22:21 +01:00
|
|
|
# Add extensions, packages, and terminal
|
2026-01-05 09:25:10 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
Switch to fish shell, ghostty terminal, and simplified prompt
- Replace bash with fish as default shell (all hosts)
- Replace kgx with ghostty (desktop hosts), update Super+T keybinding
- Custom two-line fish prompt: NixOS icon, username, path, hostname, ❯
- Nix-shell awareness, red ❯ on error
- Simplify fastfetch: user@host, OS, kernel, shell, terminal, uptime, memory
- Ghostty config: FiraCode Nerd Font, catppuccin-mocha, no titlebar
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-08 13:22:21 +01:00
|
|
|
ghostty
|
2026-01-05 09:25:10 +00:00
|
|
|
gnomeExtensions.blur-my-shell
|
|
|
|
|
gnomeExtensions.just-perfection
|
|
|
|
|
gnomeExtensions.appindicator
|
|
|
|
|
gnomeExtensions.hot-edge
|
2026-02-15 18:33:26 +00:00
|
|
|
#gnomeExtensions.rounded-window-corners-reborn
|
2026-01-05 09:25:10 +00:00
|
|
|
adwaita-icon-theme
|
2026-01-20 08:35:23 +00:00
|
|
|
gnome-themes-extra
|
|
|
|
|
papirus-icon-theme
|
2026-01-05 09:25:10 +00:00
|
|
|
];
|
2026-01-11 22:29:04 +00:00
|
|
|
|
2026-01-05 09:25:10 +00:00
|
|
|
# Set cursor theme
|
|
|
|
|
environment.sessionVariables = {
|
|
|
|
|
XCURSOR_THEME = "Adwaita";
|
|
|
|
|
XCURSOR_SIZE = "24";
|
|
|
|
|
XCURSOR_PATH = lib.mkForce [
|
|
|
|
|
"${pkgs.adwaita-icon-theme}/share/icons"
|
|
|
|
|
"$HOME/.icons"
|
|
|
|
|
"$HOME/.local/share/icons"
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Set icon theme via dconf
|
|
|
|
|
programs.dconf.profiles.user.databases = [{
|
|
|
|
|
settings = {
|
|
|
|
|
"org/gnome/desktop/interface" = {
|
2026-01-20 08:35:23 +00:00
|
|
|
icon-theme = "Papirus";
|
2026-01-05 09:25:10 +00:00
|
|
|
cursor-theme = "Adwaita";
|
|
|
|
|
};
|
2026-03-25 10:09:45 +00:00
|
|
|
"org/gnome/mutter" = {
|
|
|
|
|
experimental-features = [ "variable-refresh-rate" ];
|
|
|
|
|
};
|
2026-01-05 09:25:10 +00:00
|
|
|
};
|
|
|
|
|
}];
|
|
|
|
|
|
|
|
|
|
programs.xwayland.enable = true;
|
|
|
|
|
programs.dconf.enable = true;
|
|
|
|
|
};
|
2025-12-03 15:46:37 +00:00
|
|
|
}
|