From 61ddbbf289b958eff84bc11fc33708fc062e3043 Mon Sep 17 00:00:00 2001 From: "Mohamed C." Date: Sat, 3 Aug 2024 18:25:58 +0200 Subject: [PATCH] try conf file backup for haruna --- configs/haruna.conf | 13 +++++++++++++ home.nix | 1 + user/configs.nix | 4 ++++ 3 files changed, 18 insertions(+) create mode 100644 configs/haruna.conf create mode 100644 user/configs.nix diff --git a/configs/haruna.conf b/configs/haruna.conf new file mode 100644 index 0000000..36e2f7a --- /dev/null +++ b/configs/haruna.conf @@ -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 diff --git a/home.nix b/home.nix index ce80507..da5b4a5 100644 --- a/home.nix +++ b/home.nix @@ -4,6 +4,7 @@ imports = [ ./user/userpkgs.nix ./user/plasma.nix + ./user/configs.nix ]; home.username = "mo"; home.homeDirectory = "/home/mo"; diff --git a/user/configs.nix b/user/configs.nix new file mode 100644 index 0000000..4e28c33 --- /dev/null +++ b/user/configs.nix @@ -0,0 +1,4 @@ +{ config, pkgs, pkgs-stable, ... }: +{ +home.file".config/haruna/haruna.config".source = ./haruna.config +}