fix steam scaling finally lol

This commit is contained in:
mjallen18
2025-02-05 17:46:01 -06:00
parent 8f0efc9c56
commit 90ba19c057
4 changed files with 90 additions and 20 deletions

View File

@@ -1,4 +1,4 @@
{ ... }:
{ config, ... }:
{
sops.defaultSopsFile = ../../secrets/secrets.yaml;
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
@@ -9,5 +9,12 @@
sops.secrets."desktop/hass_token" = { };
sops.secrets."desktop/hass_token".mode = "0777";
sops.secrets."desktop/restic/user" = { };
sops.secrets."desktop/restic/password" = { };
sops.templates."restic.env".content = ''
RESTIC_REST_USER=${config.sops.placeholder."desktop/restic/user"}
RESTIC_REST_PASSWORD=${config.sops.placeholder."desktop/restic/password"}
'';
sops.secrets."wifi" = { };
}