add userspace to release.nix

auto-flake-update
Yorick van Pelt 2017-01-31 18:35:39 +01:00
parent 0b15bb4ce9
commit c9d98bc9ea
2 changed files with 7 additions and 4 deletions

View File

@ -129,7 +129,7 @@
neomutt neomutt
torbrowser torbrowser
chromium chromium
firefox-bin #firefox-bin
gimp gimp
tdesktop tdesktop
#hexchat #hexchat
@ -204,7 +204,7 @@
jarvis = with envs; [apps code de games envs.js pdf nix media gcc misc scripts]; jarvis = with envs; [apps code de games envs.js pdf nix media gcc misc scripts];
woodhouse = with envs; [de media misc kodi chromium spotify]; woodhouse = with envs; [de media misc kodi chromium spotify];
pennyworth = []; pennyworth = [];
frumar = with envs; [bup git-annex rtorrent pyroscope]; frumar = with envs; [bup gitAndTools.git-annex rtorrent pyroscope];
}; };
pandocdeps = (pkgs.texlive.combine { pandocdeps = (pkgs.texlive.combine {
inherit (pkgs.texlive) inherit (pkgs.texlive)

View File

@ -1,4 +1,7 @@
with (import <nixpkgs> {}); let pkgs = import <nixpkgs> {config = import ./nix/.nixpkgs/config.nix;};
in
with pkgs;
{ {
dotfiles = import ./default.nix; dotfiles = import ./default.nix pkgs;
userspace = pkgs.lib.mapAttrs (name: paths: pkgs.buildEnv {inherit name paths;}) pkgs.hosts;
} }