1
0
Fork 0

split system packages

This commit is contained in:
cătălin 2026-06-11 17:12:22 +02:00
commit 4e3b12a995
No known key found for this signature in database
8 changed files with 103 additions and 95 deletions

View file

@ -175,7 +175,13 @@
NIXOS_OZONE_WL = "1";
};
systemPackages = import ./packages.nix pkgs;
systemPackages = with pkgs; (
import ./packages/system.nix pkgs
++ import ./packages/cli.nix pkgs
++ import ./packages/gui.nix pkgs
++ import ./packages/rice.nix pkgs
++ import ./packages/pandora.nix pkgs
);
loginShellInit = ''
[[ "$(tty)" = "/dev/tty1" ]] && ~/.dotfiles/conf.d/utils/gs.sh
'';