Advertisement
Guest User

Untitled

a guest
Oct 27th, 2019
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. # Edit this configuratios file to define what should be installed on
  2. # your system. Help is available in the configuration.nix(5) man page
  3. # and in the NixOS manual (accessible by running ‘nixos-help’).
  4.  
  5. { config, pkgs, ... }:
  6.  
  7. {
  8.  
  9. ...many unrelated things..
  10.  
  11. # Package overrides
  12. nixpkgs.overlays = [
  13. (self: super: {
  14. python27 = super.python27.override {
  15. packageOverrides = self: super: {
  16. sentry-sdk = import /home/otwieracz/nixpkgs/pkgs/development/python-modules/sentry-sdk/default.nix;
  17. };
  18. };
  19. })
  20. ];
  21.  
  22. services.octoprint.enable = true;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement