Flake Update and Add Lutris

This commit is contained in:
Annika Merris 2024-11-20 17:09:06 -05:00
parent 33239e79f7
commit 68326e9a63
6 changed files with 66 additions and 55 deletions

View file

@ -6,6 +6,7 @@
./firefox.nix
./kcalc.nix
./kitty.nix
./lutris.nix
./netbird.nix
./obsidian.nix
./openrgb.nix

View file

@ -0,0 +1,16 @@
{ config, pkgs, lib, ... }:
{
options = {
lutris = {
enable = lib.mkEnableOption {
description = "Enable Lutris";
default = false;
};
};
};
config = lib.mkIf (config.gui.enable && config.lutris.enable) {
environment.systemPackages = [
pkgs.lutris
];
};
}

View file

@ -25,7 +25,7 @@
# username = "me@annikamerris.com"
username = "317omerbg5kalklxwpenedfcnrcq"
# password = "${config.sops.placeholder."spotifyd/settings/global/password"}"
cache_directory = "/home/annika/.cache/spotifyd"
cache_path = "/home/annika/.cache/spotifyd"
use_mpris = true
device_name = "kim-nix"
device_type = "computer"