moved all of my config into this nix flake

This commit is contained in:
Sebastian Moser
2023-10-28 19:10:37 +02:00
parent 9facde9d3a
commit 112ef46fd2
46 changed files with 3545 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{ pkgs, confDir, inputs, ... }:
{
nixpkgs.overlays = [
{
localPacketTracer8 = (pkgs.callPackage ../../prebuilt/packetTracer/default.nix {confDir = confDir;});
xdg-desktop-portal-termfilechooser = (pkgs.callPackage ../../mods/xdg-desktop-portal-termfilechooser/default.nix {});
firefox = inputs.firefox.packages.${pkgs.system}.firefox-nightly-bin;
}
];
}