mirror of
https://github.com/EdenQwQ/nixos.git
synced 2026-01-03 00:14:58 +08:00
11 lines
446 B
Nix
11 lines
446 B
Nix
{ pkgs, ... }:
|
|
{
|
|
inherit (pkgs.callPackage ./R.nix { }) myR myRstudio;
|
|
zju-connect = pkgs.callPackage ./zju-connect.nix { };
|
|
swhkd = pkgs.callPackage ./swhkd.nix { };
|
|
kose-font = pkgs.callPackage ./fonts/kose.nix { };
|
|
hugmetight-font = pkgs.callPackage ./fonts/hugmetight.nix { };
|
|
custom-colorschemes = pkgs.callPackage ./customColorSchemes { };
|
|
fiz = pkgs.callPackage ./fiz.nix { };
|
|
hellwm = pkgs.callPackage ./hellwm.nix { };
|
|
}
|