first, failed, attempt to install a windows app

This commit is contained in:
Chris Kruining 2025-04-20 12:44:06 +02:00
parent c000573635
commit 8eb6ad2fef
Signed by: chris
SSH key fingerprint: SHA256:nG82MUfuVdRVyCKKWqhY+pCrbz9nbX6uzUns4RKa1Pg
6 changed files with 114 additions and 6 deletions

View file

@ -1,14 +1,17 @@
{ config, lib, user, ... }:
{ pkgs, config, lib, user, ... }:
let
inherit (lib) mkIf;
# inherit (lib.my) mkWinApp;
inherit (lib) mkIf mkEnableOption;
cfg = config.modules.${user}.desktop.applications.studio;
in
{
options.${user}.desktop.applications.studio = {};
options.modules.${user}.desktop.applications.studio = {
enable = mkEnableOption "Enable Bricklink Studio";
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
my.studio
];
};
}

View file

@ -127,7 +127,7 @@ in
authorization_policy = "one_factor";
userinfo_signed_response_alg = "none";
consent_mode = "implicit";
scopes = [ "openid" "email" "picture" "profile" "groups" ];
scopes = [ "offline_access" "openid" "email" "picture" "profile" "groups" ];
redirect_uris = [ "http://localhost:3000/api/auth/oauth2/callback/authelia" ];
}
];