clean overlays
This commit is contained in:
parent
c505eb8e09
commit
6c9de2273d
11 changed files with 13 additions and 36 deletions
|
@ -5,6 +5,7 @@
|
|||
./common
|
||||
# ./fake_flake.nix
|
||||
./users.nix
|
||||
./custom
|
||||
];
|
||||
|
||||
# Bootloader.
|
||||
|
|
11
custom/default.nix
Normal file
11
custom/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ lib, ... }: {
|
||||
nixpkgs.overlays = lib.singleton (final: prev: {
|
||||
confwhich = prev.callPackage ./confwhich/package.nix { };
|
||||
deskwhich = prev.callPackage ./deskwhich/package.nix { };
|
||||
linux-bench = prev.callPackage ./linux-bench/package.nix { };
|
||||
ooye = prev.callPackage ./ooye/package.nix { };
|
||||
rfindup = prev.callPackage ./rfindup/package.nix { };
|
||||
searchclip = prev.callPackage ./searchclip/package.nix { };
|
||||
tlpui = prev.callPackage ./tlpui/package.nix { };
|
||||
});
|
||||
}
|
|
@ -17,7 +17,7 @@ in
|
|||
./wpa_supplicant.nix
|
||||
./auditd.nix
|
||||
./acpid.nix
|
||||
./cups.nix
|
||||
# ./cups.nix
|
||||
# ./bluetooth.nix
|
||||
# ./tty.nix
|
||||
./ask-password.nix
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
{ prev, ... }:
|
||||
{
|
||||
confwhich = prev.callPackage ../custom/confwhich/package.nix { };
|
||||
}
|
|
@ -30,17 +30,10 @@
|
|||
[
|
||||
./lua_update.nix
|
||||
./matrix-appservice-discord.nix
|
||||
./deskwhich.nix
|
||||
./tlpui.nix
|
||||
# ./ccache-wrapper.nix
|
||||
./searchclip.nix
|
||||
./confwhich.nix
|
||||
./rfindup.nix
|
||||
./ooye.nix
|
||||
./factorio.nix
|
||||
./ranger.nix
|
||||
./vesktop.nix
|
||||
./linux-bench.nix
|
||||
# ./grpcio-tools.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
{ prev, ... }:
|
||||
{
|
||||
deskwhich = prev.callPackage ../custom/deskwhich/package.nix { };
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
{ prev, ... }:
|
||||
{
|
||||
linux-bench = prev.callPackage ../custom/linux-bench/package.nix { };
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
{ prev, ... }:
|
||||
{
|
||||
ooye = prev.callPackage ../custom/ooye/package.nix { };
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
{ prev, ... }:
|
||||
{
|
||||
rfindup = prev.callPackage ../custom/rfindup/package.nix { };
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
{ prev, ... }:
|
||||
{
|
||||
searchclip = prev.callPackage ../custom/searchclip/package.nix { };
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
{ prev, ... }:
|
||||
{
|
||||
tlpui = prev.callPackage ../custom/tlpui/package.nix { };
|
||||
}
|
Loading…
Add table
Reference in a new issue