Regenerated

This commit is contained in:
2026-03-22 17:20:06 +00:00
parent cda6de2bd8
commit 923079fc7d
34 changed files with 28 additions and 1572 deletions
+6 -18
View File
@@ -876,14 +876,15 @@ in
** =generated/modules/apps/zenbrowser.nix=
This is top file of this level which contains just an import statement for all relevant files and/or the subfolder in this folder
#+BEGIN_SRC nix :tangle generated/modules/apps/zenbrowser.nix :noweb tangle :mkdirp yes :eval never-html
{ config, pkgs, lib, ... }:
{ config, pkgs, lib, inputs, ... }:
let
# Grab the Zen Browser from the flake overlay for your system
zenBrowser = inputs.zen-browser.packages.${pkgs.stdenv.hostPlatform.system}.default;
in
{
################################################
# Install Zen Browser system-wide
################################################
environment.systemPackages = [
pkgs.zen-browser
zenBrowser
];
}
#+END_SRC
@@ -894,12 +895,6 @@ This will import all packages listed in ../../assets/system/apps/flatpaks.conf
{ lib, pkgs, config, ... }:
let
# Module name
moduleName = "flatpaks";
# Top-level toggle for this module
enableProgram = config.enableFlatpaks or false;
# Path to your Flatpak list
assetPath = ../../../assets/system/apps/flatpaks.conf;
@@ -907,12 +902,6 @@ let
username = config.defaultUser or "henrov";
in
{
# --- Top-level toggle option ---
options.enableFlatpaks = lib.mkEnableOption "Enable automatic Flatpak installation";
# --- Config only applied if enabled ---
config = lib.mkIf enableProgram {
# Deploy the Flatpak conf file
environment.etc."flatpak/flatpaks.conf".source = assetPath;
@@ -955,7 +944,6 @@ in
# Include only the packages needed for this service
path = [ pkgs.flatpak pkgs.coreutils pkgs.gnugrep pkgs.gnused ];
};
};
}
#+END_SRC