summaryrefslogtreecommitdiffstats
path: root/build.nix
diff options
context:
space:
mode:
Diffstat (limited to 'build.nix')
-rw-r--r--build.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/build.nix b/build.nix
index 213fcce..9653507 100644
--- a/build.nix
+++ b/build.nix
@@ -1,7 +1,9 @@
let
- overlays = [ (import ./default.nix) ];
- pkgs-unstable= import (import ./pkgs-unstable) { inherit overlays; };
- pkgs-release = import (import ./pkgs-18.09) { inherit overlays; };
+ pkgs = import (import ./nixpkgs/nixos-unstable) {
+ overlays = [ (import ./default.nix) ];
+ };
in
- pkgs-unstable.swaypkgs
+ [
+ pkgs.waylandpkgs
+ ]