mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 06:19:00 +00:00
881d015674
Though, it has been added by accident (whoops). It's for real this time. :)
12 lines
316 B
Nix
12 lines
316 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
with pkgs; {
|
|
flatpak = callPackage ./flatpak.nix { };
|
|
gnu = callPackage ./gnu.nix { };
|
|
gnome = callPackage ./gnome.nix { };
|
|
nix = callPackage ./nix.nix { };
|
|
hugo = callPackage ./hugo.nix { };
|
|
rust = callPackage ./rust.nix { };
|
|
tic-80 = callPackage ./tic-80.nix { };
|
|
}
|