1

Add more packages from prev install

This commit is contained in:
2022-06-29 20:30:02 +02:00
parent 6a8d524cf2
commit fe3bb5d467
3 changed files with 107 additions and 38 deletions

View File

@ -17,6 +17,7 @@
# Other Flakes
emacs-overlay.url = "github:nix-community/emacs-overlay";
nur.url = "github:nix-community/NUR";
};
# Outputs is a function that takes the inputs as arguments.
@ -32,6 +33,12 @@
# The rec expression turns a basic set into a set where self-referencing is possible.
# It is a shorthand for recursive and allows to use the values defined in this set from its own scope.
rec {
# Add overlays from other flakes so we can use them from pkgs.
overlays = {
nur = nur.overlay;
emacs = emacs-overlay.overlay;
};
# System configurations
# Accessible via 'nixos-rebuild'
nixosConfigurations = {