first, failed, attempt to install a windows app
This commit is contained in:
parent
c000573635
commit
8eb6ad2fef
6 changed files with 114 additions and 6 deletions
|
@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue