start of wine desktop apps

This commit is contained in:
Chris Kruining 2025-03-28 20:04:37 +01:00
parent 1776e594c7
commit f2024a5b37
Signed by: chris
SSH key fingerprint: SHA256:nG82MUfuVdRVyCKKWqhY+pCrbz9nbX6uzUns4RKa1Pg
2 changed files with 22 additions and 0 deletions

8
lib/windows.nix Normal file
View file

@ -0,0 +1,8 @@
{ lib, self, ... }:
let
in
{
mkWinApp = { }: {
};
}

View file

@ -0,0 +1,14 @@
{ config, lib, pkgs, user, ... }:
let
inherit (lib) mkIf;
inherit (lib.my) mkWinApp;
cfg = config.modules.${user}.desktop.applications.studio;
in
{
options.${user}.desktop.applications.studio = {};
config = mkIf cfg.enable {
};
}