mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-01 04:57:55 +00:00
16 lines
290 B
Nix
16 lines
290 B
Nix
let
|
|
sources = import ../../npins;
|
|
in
|
|
{
|
|
pkgs ? import sources.nixos-unstable { },
|
|
}:
|
|
|
|
let
|
|
wmLib = (import ../../. { }).lib;
|
|
build = modules: wmLib.build { inherit pkgs modules; };
|
|
in
|
|
{
|
|
fastfetch = build [ ./wrapper-fastfetch.nix ];
|
|
neofetch = build [ ./wrapper-neofetch.nix ];
|
|
}
|