1
Fork 0

fix: removed rofi for now and readded easy-*-nix

This commit is contained in:
Matei Adriel 2021-11-27 20:07:26 +02:00
parent a2566c1fed
commit 40609495b8
2 changed files with 13 additions and 11 deletions

View file

@ -8,21 +8,23 @@
home-manager.url = "github:nix-community/home-manager"; home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs"; home-manager.inputs.nixpkgs.follows = "nixpkgs";
# easy-dhall-nix.url = "github:justinwoo/easy-dhall-nix"; easy-dhall-nix.url = "github:justinwoo/easy-dhall-nix";
# easy-dhall-nix.flake = false; easy-dhall-nix.flake = false;
# # easy-dhall-nix.inputs.nixpkgs.follows = "nixpkgs";
# easy-purescript-nix.url = "github:justinwoo/easy-purescript-nix"; easy-purescript-nix.url = "github:justinwoo/easy-purescript-nix";
# easy-purescript-nix.flake = false; easy-purescript-nix.flake = false;
# easy-purescript-nix.inputs.nixpkgs.follows = "nixpkgs";
}; };
outputs = { self, nixpkgs, home-manager, nixos-unstable, outputs = { self, nixpkgs, home-manager, nixos-unstable,
# easy-purescript-nix, easy-purescript-nix,
# easy-dhall-nix, easy-dhall-nix,
... }: { ... }: {
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; 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 = [ modules = [
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
./hardware/laptop.nix ./hardware/laptop.nix

View file

@ -3,9 +3,9 @@
enable = true; enable = true;
font = "Source Code Pro 16"; font = "Source Code Pro 16";
location = "center"; location = "center";
padding = 10; # padding = 10;
lines = 7; # lines = 7;
fullscreen = false; # fullscreen = false;
cycle = true; cycle = true;
theme = "solarized_alternate"; theme = "solarized_alternate";
}; };