aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index b87429e..a1b1d3d 100644
--- a/flake.nix
+++ b/flake.nix
@@ -11,17 +11,19 @@
inputs = { nixpkgs.follows = "stable"; };
};
emacs.url = github:nix-community/emacs-overlay/master;
+
+ pi-mono.url = github:lukasl-dev/pi-mono.nix/master;
};
outputs = {
- self, stable, unstable, oldstable, personal, emacs, home-manager, ...
+ self, stable, unstable, oldstable, personal, home-manager, emacs, pi-mono, ...
}: let
system = "x86_64-linux";
pkgs = import stable {
inherit system;
config = { allowUnfree = true; };
- overlays = [ emacs.overlay ];
+ overlays = [ emacs.overlay pi-mono.overlays.default ];
};
pkgs-unstable = import unstable {