about summary refs log tree commit diff
path: root/machines/aszlig/managed/tyree.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-05-17 02:00:54 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-05-17 02:00:54 +0200
commit8ca92d1d2015edc8619a1b159380510f219e8f5d (patch)
tree76ed9144f3902215ac74c73ee8ae83f49cb35a7d /machines/aszlig/managed/tyree.nix
parent91b0ae61341b32065af08b419b7e7a75d6ed7f09 (diff)
machines/aszlig/managed: Remove allowUnfree
The only package which pretty much is a major nuisance is Skype here and
we really need to find a way to add it to the system without actually
building it. But for now, let's mark it explicitly as unfree and
non-distributable.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'machines/aszlig/managed/tyree.nix')
-rw-r--r--machines/aszlig/managed/tyree.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/machines/aszlig/managed/tyree.nix b/machines/aszlig/managed/tyree.nix
index fe3e2f69..d896b249 100644
--- a/machines/aszlig/managed/tyree.nix
+++ b/machines/aszlig/managed/tyree.nix
@@ -1,4 +1,4 @@
-{ config, pkgs, lib, ... }:
+{ config, pkgs, unfreeAndNonDistributablePkgs, lib, ... }:
 
 {
   boot.initrd.availableKernelModules = [ "usbhid" ];
@@ -9,8 +9,8 @@
 
   environment.systemPackages = with pkgs; [
     cdparanoia chromium figlet gajim gimp htop inkscape kde5.gwenview
-    libreoffice mosh mpv pciutils skype thunderbird vlc vuizvui.tomahawk wget
-    wine youtubeDL
+    libreoffice mosh mpv pciutils unfreeAndNonDistributablePkgs.skype
+    thunderbird vlc vuizvui.tomahawk wget wine youtubeDL
   ];
 
   fileSystems."/boot".device = "/dev/disk/by-uuid/A0D5-269D";
@@ -51,7 +51,6 @@
   '';
 
   nixpkgs.config = {
-    allowUnfree = true;
     pulseaudio = true;
     chromium.enablePepperFlash = true;
   };