From 40609495b8aab516ac16f5cb83fec52aeae5ae69 Mon Sep 17 00:00:00 2001
From: Matei Adriel <rafaeladriel11@gmail.com>
Date: Sat, 27 Nov 2021 20:07:26 +0200
Subject: [PATCH] fix: removed rofi for now and readded easy-*-nix

---
 flake.nix                     | 18 ++++++++++--------
 modules/applications/rofi.nix |  6 +++---
 2 files changed, 13 insertions(+), 11 deletions(-)

diff --git a/flake.nix b/flake.nix
index 0a6e267..294b74c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -8,21 +8,23 @@
     home-manager.url = "github:nix-community/home-manager";
     home-manager.inputs.nixpkgs.follows = "nixpkgs";
 
-    # easy-dhall-nix.url = "github:justinwoo/easy-dhall-nix";
-    # easy-dhall-nix.flake = false;
-    # # easy-dhall-nix.inputs.nixpkgs.follows = "nixpkgs";
+    easy-dhall-nix.url = "github:justinwoo/easy-dhall-nix";
+    easy-dhall-nix.flake = false;
 
-    # easy-purescript-nix.url = "github:justinwoo/easy-purescript-nix";
-    # easy-purescript-nix.flake = false;
-    # easy-purescript-nix.inputs.nixpkgs.follows = "nixpkgs";
+    easy-purescript-nix.url = "github:justinwoo/easy-purescript-nix";
+    easy-purescript-nix.flake = false;
   };
 
   outputs = { self, nixpkgs, home-manager, nixos-unstable,
-    # easy-purescript-nix,
-    # easy-dhall-nix,
+    easy-purescript-nix,
+    easy-dhall-nix,
     ... }: {
       nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
         system = "x86_64-linux";
+        nixpkgs.overlays = [self: super: {
+          easy-purescript-nix = import easy-purescript-nix { inherit pgks };
+          easy-dhall-nix = import easy-dhall-nix { inherit pgks };
+        }];
         modules = [
           home-manager.nixosModules.home-manager
           ./hardware/laptop.nix
diff --git a/modules/applications/rofi.nix b/modules/applications/rofi.nix
index e4daf41..c4ef5a6 100644
--- a/modules/applications/rofi.nix
+++ b/modules/applications/rofi.nix
@@ -3,9 +3,9 @@
     enable = true;
     font = "Source Code Pro 16";
     location = "center";
-    padding = 10;
-    lines = 7;
-    fullscreen = false;
+    # padding = 10;
+    # lines = 7;
+    # fullscreen = false;
     cycle = true;
     theme = "solarized_alternate";
   };