try conf file backup for haruna

This commit is contained in:
Mohamed Chrayed 2024-08-03 18:25:58 +02:00
parent 19194850c6
commit 61ddbbf289
3 changed files with 18 additions and 0 deletions

13
configs/haruna.conf Normal file
View File

@ -0,0 +1,13 @@
[Audio]
PreferredLanguage=eng,en,ger,de,jap,ja
[General]
AppendVideoToSingleInstance=true
ShowPreviewThumbnail=true
UseSingleInstance=true
[Playback]
UseHWDecoding=true
[Subtitles]
PreferredLanguage=eng,en,ger,de,jap,ja

View File

@ -4,6 +4,7 @@
imports = [
./user/userpkgs.nix
./user/plasma.nix
./user/configs.nix
];
home.username = "mo";
home.homeDirectory = "/home/mo";

4
user/configs.nix Normal file
View File

@ -0,0 +1,4 @@
{ config, pkgs, pkgs-stable, ... }:
{
home.file".config/haruna/haruna.config".source = ./haruna.config
}