summary refs log tree commit diff stats
path: root/modules/programs
diff options
context:
space:
mode:
authorAlan Pearce2017-10-18 12:41:14 +0200
committerAlan Pearce2017-10-18 12:41:14 +0200
commit140c75b83a3074c69c562fd0d788a00cad25b8e3 (patch)
treeb1d5a69aaf6ceb4dc8c93eccd8ea652b7ed3f492 /modules/programs
parent90ee1170898bcef3975e9f6adff5a86530ec2506 (diff)
downloadnixos-configuration-140c75b83a3074c69c562fd0d788a00cad25b8e3.tar.lz
nixos-configuration-140c75b83a3074c69c562fd0d788a00cad25b8e3.tar.zst
nixos-configuration-140c75b83a3074c69c562fd0d788a00cad25b8e3.zip
Reduce number of unstable packages installed
Diffstat (limited to 'modules/programs')
-rw-r--r--modules/programs/accounting.nix10
-rw-r--r--modules/programs/dotfiles.nix6
2 files changed, 4 insertions, 12 deletions
diff --git a/modules/programs/accounting.nix b/modules/programs/accounting.nix
index bcd33b8..5882436 100644
--- a/modules/programs/accounting.nix
+++ b/modules/programs/accounting.nix
@@ -1,14 +1,10 @@
 { config, pkgs, ... }:
 
-let
-  pkgsUnstable = import <nixos-unstable> {};
-  # pkgsUnstable = pkgs;
-in
 { environment.systemPackages = with pkgs; [
     aqbanking
     ledger
-    pkgsUnstable.bean-add
-    pkgsUnstable.beancount
-    pkgsUnstable.fava
+    bean-add
+    beancount
+    fava
   ];
 }
diff --git a/modules/programs/dotfiles.nix b/modules/programs/dotfiles.nix
index eed2223..467665f 100644
--- a/modules/programs/dotfiles.nix
+++ b/modules/programs/dotfiles.nix
@@ -1,13 +1,9 @@
 { config, pkgs, ... }:
 
-let
-  pkgsUnstable = import <nixos-unstable> {};
-  # pkgsUnstable = pkgs;
-in
 { environment.systemPackages = with pkgs; [
     git
     stow
     fzf
-    pkgsUnstable.ghq
+    ghq
   ];
 }