1
0
Fork 0
puter/profiles/desktop/vesktop.nix

18 lines
188 B
Nix
Raw Permalink Normal View History

2025-05-11 22:49:04 +02:00
{
config,
lib,
pkgs,
...
}:
let
cfg = config.profiles.desktop;
in
{
# TODO
config = lib.mkIf cfg.enable {
environment.systemPackages = [
pkgs.vesktop
];
};
}