Add some config files.

This commit is contained in:
Tom Alexander
2025-01-21 23:07:05 -05:00
parent 37aa0e6732
commit edc48d00a2
3 changed files with 56 additions and 0 deletions

View File

@@ -77,6 +77,19 @@
];
};
};
home-manager.users.kodi =
{ pkgs, ... }:
{
home.file.".kodi/userdata/mediasources.xml".source = ./files/mediasources.xml;
home.file.".kodi/userdata/addon_data/peripheral.joystick/resources/buttonmaps/xml/linux/DualSense_Wireless_Controller_13b_8a.xml".source =
./files/DualSense_Wireless_Controller_13b_8a.xml;
# The state version is required and should stay at the version you
# originally installed.
home.stateVersion = "24.11";
};
})
]
);