mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2025-12-13 18:43:16 -05:00
Flake Update and Add Lutris
This commit is contained in:
parent
33239e79f7
commit
68326e9a63
6 changed files with 66 additions and 55 deletions
|
|
@ -6,6 +6,7 @@
|
|||
./firefox.nix
|
||||
./kcalc.nix
|
||||
./kitty.nix
|
||||
./lutris.nix
|
||||
./netbird.nix
|
||||
./obsidian.nix
|
||||
./openrgb.nix
|
||||
|
|
|
|||
16
modules/common/applications/lutris.nix
Normal file
16
modules/common/applications/lutris.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue