ryzensun: disable mopidy

This commit is contained in:
teutat3s 2022-11-20 23:14:21 +01:00
parent a006bed2ea
commit d69ed82a31
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1

View file

@ -1,10 +1,14 @@
{ config, pkgs, lib, self, ... }:
with lib;
let
{
config,
pkgs,
lib,
self,
...
}:
with lib; let
psCfg = config.pub-solar;
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
in
{
in {
imports = [
./hardware-configuration.nix
];
@ -20,6 +24,8 @@ in
pub-solar.docker.enable = true;
pub-solar.virtualisation.enable = true;
pub-solar.audio.mopidy.enable = mkForce false;
home-manager.users."${psCfg.user.name}".xdg.configFile = mkIf psCfg.sway.enable {
"sway/config.d/10-custom-keybindings.conf".source = ./.config/sway/config.d/custom-keybindings.conf;
"sway/config.d/autostart.conf".source = ./.config/sway/config.d/autostart.conf;