diff options
author | Azat Bahawi <azat@bahawi.net> | 2023-04-07 19:35:15 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2023-04-07 19:35:15 +0300 |
commit | dae3149a93cab4d1140526e15eb928d275f56128 (patch) | |
tree | 2b567413cd9f6882c616fee5aba7392281ac95fa /modules/nixos | |
parent | 2023-04-04 (diff) |
2023-04-07
Diffstat (limited to '')
-rw-r--r-- | modules/nixos/games/gamemode.nix | 8 | ||||
-rw-r--r-- | modules/nixos/games/lutris.nix | 10 | ||||
-rw-r--r-- | modules/nixos/mpd.nix | 2 |
3 files changed, 10 insertions, 10 deletions
diff --git a/modules/nixos/games/gamemode.nix b/modules/nixos/games/gamemode.nix index 051d12e..193a764 100644 --- a/modules/nixos/games/gamemode.nix +++ b/modules/nixos/games/gamemode.nix @@ -9,5 +9,11 @@ in { options.nixfiles.modules.games.gamemode.enable = mkEnableOption "Feral GameMode"; - config = mkIf cfg.enable {programs.gamemode.enable = true;}; + config = mkIf cfg.enable { + hm.xdg.configFile."gamemode.ini".text = generators.toINI {} { + general.softrealtime = "auto"; + }; + + programs.gamemode.enable = true; + }; } diff --git a/modules/nixos/games/lutris.nix b/modules/nixos/games/lutris.nix index 2737953..ad1e43e 100644 --- a/modules/nixos/games/lutris.nix +++ b/modules/nixos/games/lutris.nix @@ -17,15 +17,7 @@ in { }; hm.home.packages = with pkgs; [ - (lutris.override { - lutris-unwrapped = lutris-unwrapped.override { - wine = buildFHSUserEnv { - # We don't really need Wine because Lutris downloads a required - # runtime for us. - name = "empty"; - }; - }; - }) + lutris vkBasalt winetricks ]; diff --git a/modules/nixos/mpd.nix b/modules/nixos/mpd.nix index 7540c14..b38ab9f 100644 --- a/modules/nixos/mpd.nix +++ b/modules/nixos/mpd.nix @@ -41,7 +41,9 @@ in { settings = rec { ncmpcpp_directory = "${config.dirs.data}/ncmpcpp"; + lyrics_directory = "${ncmpcpp_directory}/lyrics"; + lyrics_fetchers = "musixmatch, genius, internet"; playlist_disable_highlight_delay = 1; message_delay_time = 1; |