# home-manager/fred.nix { config, pkgs, lib, inputs, osConfig, ... }: let isDesktop = lib.elem osConfig.networking.hostName [ "FredOS-Gaming" "FredOS-Macbook" ]; in { home.stateVersion = "25.11"; home.packages = with pkgs; [ # ]; home.file.".config/nixpkgs/config.nix".text = '' { allowUnfree = true; } ''; # Wallpaper source — consumed by stylix's image option (set in # settings/stylix.nix) and by quickshell's wallpaper layer. home.file.".local/share/backgrounds/wallpaper.png".source = "${inputs.self}/walls/wallpaper.png"; # btop — stylix's btop target writes the colour theme; we keep our # non-colour preferences here. programs.btop = { enable = true; settings = { theme_background = false; vim_keys = false; proc_filter_kernel = true; }; }; # Ghostty — stylix's ghostty target writes the colour theme. programs.ghostty = lib.mkIf isDesktop { enable = true; settings = { font-family = "CaskaydiaCove NF"; font-size = 11; font-thicken = true; window-padding-x = 10; window-padding-y = 10; window-padding-balance = true; background-opacity = 0.98; confirm-close-surface = false; gtk-titlebar = false; gtk-single-instance = true; # keeps the warm instance alive with zero windows quit-after-last-window-closed = false; cursor-style = "bar"; cursor-style-blink = true; }; }; # spotify-player — native librespot TUI replacing the Electron Spotify app. # stylix's spotify-player target writes the colour theme. # MPRIS (quickshell's media card), notifications and streaming are all on by # default on Linux, so only the off-by-default visualiser needs setting. programs.spotify-player = lib.mkIf isDesktop { enable = true; # 26.05 ships 0.23.0, whose Web API token is cached with refresh_token = # null: once it expires (~1h) nothing can renew it and the library just # spins until the app is restarted. 0.24.1 treats a non-renewable cached # token as unusable and re-runs the PKCE flow instead. Drop this override # once the pinned channel reaches 0.24.1. package = pkgs.spotify-player.overrideAttrs (old: rec { version = "0.24.1"; src = pkgs.fetchFromGitHub { owner = "aome510"; repo = "spotify-player"; tag = "v${version}"; hash = "sha256-+GADmRl4XMwV8TfYZjEeyKDDfda3bDPzeerhYryX6vA="; }; cargoDeps = pkgs.rustPlatform.fetchCargoVendor { inherit src; hash = "sha256-CSZ5sZ+d7Jhi43ipaWXKupYPFgWCbCx4RMTQN8emu9o="; }; # Give initialize_playback's retry loop a much longer window, so we don't # have to pick our own device from the popup on every launch. Upstream # retries the transfer 5 times, once a second; our librespot device isn't # registered with the Spotify backend until ~20s after startup, so all # five attempts 404 and it gives up: # Trying to connect to device (id=…) # Connection failed (device_id=…): http error: status code 404 Not Found # The loop breaks on the first success, so a bigger bound costs nothing. # The CLI is no help here: `connect --name` resolves names against the Web # API device list, which doesn't contain the integrated device at all. postPatch = (old.postPatch or "") + '' substituteInPlace spotify_player/src/client/mod.rs \ --replace-fail " for _ in 0..5 {" \ " for _ in 0..60 {" ''; }); settings = { enable_audio_visualization = true; # No `client_id` on purpose: the bundled default (ncspot's) has extended # quota mode and predates the 2024-11-27 Web API changes. Our own app is # newer, so it sits in the restricted quota and 404s on search, browse # categories and Made-For-You — upstream issues #617 / #890. Sharing the # default ID does not cost us rate limit here; upstream recommends it. }; # The home-manager module only writes keymap.toml when `keymaps` is # non-empty, so `actions` alone would silently emit nothing. Restating a # default binding is the cheapest way to make the file exist. keymaps = [ { command = "ShowActionsOnCurrentTrack"; key_sequence = "a"; } ]; # Actions default to the *selected* item, which is useless when listening # along to someone else's playback — the track was never selected, so # liking it means finding it by hand. target = "PlayingTrack" acts on # whatever is actually playing. actions = [ { action = "ToggleLiked"; key_sequence = "L"; target = "PlayingTrack"; } { action = "GoToArtist"; key_sequence = "g P"; target = "PlayingTrack"; } { action = "GoToAlbum"; key_sequence = "g B"; target = "PlayingTrack"; } ]; }; # Upstream ships no .desktop file (TUI only), so the launcher can't find it. xdg.desktopEntries.spotify-player = lib.mkIf isDesktop { name = "Spotify Player"; genericName = "Music Player"; exec = "ghostty --title=spotify-player -e spotify_player"; icon = "spotify"; terminal = false; categories = [ "Audio" "Music" "Player" "AudioVideo" ]; }; # Warm Ghostty instance — new windows attach via gtk-single-instance. systemd.user.services.ghostty-daemon = lib.mkIf isDesktop { Unit = { Description = "Ghostty warm instance (no window)"; After = [ "graphical-session.target" ]; PartOf = [ "graphical-session.target" ]; }; Service = { Type = "simple"; ExecStart = "${pkgs.ghostty}/bin/ghostty --initial-window=false"; Restart = "always"; }; Install.WantedBy = [ "graphical-session.target" ]; }; }