All checks were successful
CI / check (push) Successful in 3m26s
Allows KDE Connect discovery and pairing to work when logged in as the kodi user on the media center. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
31 lines
617 B
Nix
31 lines
617 B
Nix
{ pkgs, globalInputs, system, ... }:
|
|
|
|
{
|
|
# Home Manager configuration for kodi user on boxy
|
|
# Focused on media center volume control via Home Assistant
|
|
|
|
home.username = "kodi";
|
|
home.homeDirectory = "/home/kodi";
|
|
home.stateVersion = "24.05";
|
|
|
|
# Enable minimal roles for kodi user
|
|
home.roles = {
|
|
base.enable = true;
|
|
plasma-manager-kodi.enable = true;
|
|
kdeconnect.enable = true;
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
kdePackages.kconfig
|
|
];
|
|
|
|
targets.genericLinux.enable = true;
|
|
home.sessionVariables = {};
|
|
home.sessionPath = [];
|
|
|
|
imports = [
|
|
./roles
|
|
./roles/base-linux
|
|
];
|
|
}
|