Add Fluxer desktop app package

Expose Fluxer as a system package by adding a new fluxer module and
importing it
in the core packages list.
This commit is contained in:
2026-02-16 22:41:30 +01:00
parent f2628ed320
commit 60d1363f58
3 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
{pkgs, ...}: let
fluxer =
pkgs.callPackage ./fluxer-package.nix {};
in {
environment.systemPackages = [fluxer];
}