Reshuffling stuff

This commit is contained in:
2026-03-18 18:16:37 +00:00
parent c128169e50
commit e600bd3b52
3 changed files with 24 additions and 14 deletions
@@ -1,7 +0,0 @@
{ config, lib, pkgs, flakeRoot, inputs, ... }:
let
zenBrowser = inputs.zen-browser.packages.${pkgs.stdenv.hostPlatform.system}.default;
in
{
environment.systemPackages = [zenBrowser];
}
@@ -0,0 +1,12 @@
# ./modules/apps/zen-browser.nix
{ lib, config, ... }:
{
mySystem = {
apps.zenBrowser = {
enable = true;
# just store symbolic info, no direct pkgs reference
packageRef = "zen-browser";
};
};
}