all repos — nixfiles @ 42ae19e4dfc9cca93fa7030a98939de3528457c2

System and user configuration, managed by nix and home-manager

Don't use pkgsUnstable unnecessarily
Alan Pearce alan@alanpearce.eu
Mon, 21 Oct 2019 21:45:24 +0200
commit

42ae19e4dfc9cca93fa7030a98939de3528457c2

parent

05ccf28d742b0b12360e833ecf3254ecd7c60b94

M user/settings/emacs.nixuser/settings/emacs.nix
@@ -3,8 +3,6 @@ let
   inherit (pkgs) stdenv;
 
-  pkgsUnstable = if stdenv.isDarwin then import <nixpkgs> {} else import <nixos-unstable> {};
-
   editorScript = pkgs.writeScriptBin "edit" ''
     #!${pkgs.runtimeShell}
     if [ -z "$1" ]; then
@@ -138,17 +136,11 @@ ws-butler       which-key
       yaml-mode
     ] ++ lib.optionals (!stdenv.isDarwin) [
-      pkgs.unstable.mu
+      pkgs.mu
     ]);
   };
   home.packages = [
     editorScript
-  ];
-  nixpkgs.overlays = [
-    (self: super: {
-      emacsPackagesNgGen = pkgsUnstable.emacsPackagesNgGen;
-      emacs = pkgsUnstable.emacs;
-    })
   ];
   home.sessionVariables = {
     EDITOR = "${editorScript}/bin/edit";
M user/settings/gaming.nixuser/settings/gaming.nix
@@ -2,9 +2,9 @@ { config, pkgs, ... }: 
 {
   home.packages = with pkgs; [
-    unstable.steam
+    steam
     (
-      unstable.winePackages.unstable.override {
+      winePackages.override {
         pngSupport = true;
         jpegSupport = true;
         tiffSupport = true;
@@ -40,6 +40,6 @@ vulkanSupport = true;         sdlSupport = true;
       }
     )
-    unstable.lutris
+    lutris
   ];
 }
M user/settings/javascript.nixuser/settings/javascript.nix
@@ -1,14 +1,14 @@ { config, pkgs, ... }:
 
 let
-  node = pkgs.unstable.nodejs-10_x;
-  npmPackages = pkgs.unstable.nodePackages_10_x;
+  node = pkgs.nodejs-10_x;
+  npmPackages = pkgs.nodePackages_10_x;
   node2nixPackages = import ../packages/node2nix/default.nix {
-    pkgs = pkgs.unstable;
+    inherit pkgs;
     nodejs = node;
   };
 in
-{ home.packages = (with pkgs.unstable; [
+{ home.packages = (with pkgs; [
     node
   ] ++ (
     if stdenv.isDarwin
M user/settings/passwords.nixuser/settings/passwords.nix
@@ -1,7 +1,7 @@ { config, pkgs, ... }:
 
 {
-  home.packages = with pkgs.unstable; [
+  home.packages = with pkgs; [
     keepassx-community
     rofi-pass
     pass-otp
M user/settings/satoshipay.nixuser/settings/satoshipay.nix
@@ -22,20 +22,20 @@ pgcli     s3cmd
     sops
 
-    unstable.mkcert
-    unstable.google-cloud-sdk
-    unstable.docker_compose
-    unstable.kubernetes
-    unstable.kubectx
-    unstable.kubernetes-helm
-    unstable.helmfile
+    mkcert
+    google-cloud-sdk
+    docker_compose
+    kubernetes
+    kubectx
+    kubernetes-helm
+    helmfile
   ] ++ (lib.optionals (!stdenv.isDarwin)
   [
     pgadmin
 
-    unstable.redis-desktop-manager
-    unstable.robo3t
-    unstable.slack
+    redis-desktop-manager
+    robo3t
+    slack
   ]));
 
   programs.git.includes = [
M user/settings/user-interface.nixuser/settings/user-interface.nix
@@ -5,14 +5,14 @@ inherit (pkgs) stdenv; in
 {
   home.sessionVariables = {
-    TERMINAL = "${pkgs.unstable.xst}/bin/xst";
+    TERMINAL = "${pkgs.xst}/bin/xst";
   };
 
   home.packages = with pkgs; [
     firefox
-    unstable.xst # st, but with support for XResources
+    xst # st, but with support for XResources
   ] ++ lib.optionals (!stdenv.isDarwin) [
     pkgs.sshfs
-    pkgs.unstable.mu
+    pkgs.mu
   ];
 }