1
Fork 0
mirror of https://github.com/thegeneralist01/config.git synced 2026-03-10 10:40:29 +01:00

add flex, remove calorie-tracker, minor changes

This commit is contained in:
TheGeneralist 2026-03-09 18:24:47 +01:00
parent 8659b0fba3
commit 6e1e8c1b8f
Signed by: thegeneralist01
SSH key fingerprint: SHA256:pp9qddbCNmVNoSjevdvQvM5z0DHN7LTa8qBMbcMq/R4
10 changed files with 53 additions and 387 deletions

View file

@ -1,6 +0,0 @@
{ inputs, pkgs, ... }: {
environment.systemPackages = [
# inputs.helium.defaultPackage.${pkgs.system}
inputs.helium.packages.${pkgs.system}.default
];
}

View file

@ -1,4 +1,4 @@
{ pkgs, lib, config, ...}: let
{ inputs, pkgs, lib, config, ...}: let
inherit (lib) attrValues;
in {
environment.systemPackages = attrValues {
@ -7,13 +7,15 @@ in {
pwvucontrol
wireplumber
playerctl
ntfs3g
obsidian
tor-browser;
ntfs3g;
} ++ (if (!config.isServer) then (attrValues {
inherit (pkgs) protonup-qt
xsane
simple-scan;
}) else []);
simple-scan
obsidian
tor-browser;
}) else []) ++ (if (!config.isServer) then [
inputs.helium.packages.${pkgs.system}.default
] else []);
}