about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* pkgs: Rename "kpatches" directory to "kernel"aszlig2016-10-273-3/+3
| | | | | | | | | This now should reflect "all things kernel" and thus could not only contain patches but other things. If we have so many patches that it makes sense to namespace them further, we can still use kernel/patches for that purpose which is way better than "kpatches". Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* pkgs/grandpa: Remove dependency on cursesaszlig2016-10-271-3/+1
| | | | | | | | | | | Follow up to 65c8919d0da4494786ee28fef6da97ac59fcee1a. Another attribute that is now gone since NixOS/nixpkgs@bee439207bd729eee0bf5dcae5be44320cee45cd. However, I've tested evaluation on the package this time. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* pkgs/grandpa: Remove dependency on bsddbaszlig2016-10-271-1/+1
| | | | | | | | | | | It seems (haven't really tested) that since NixOS/nixpkgs@bee439207bd729eee0bf5dcae5be44320cee45cd using bsddb is no longer necessary and built in into Python. I haven't tested whether this is true or not, but the attribute is gone so let's make sure that the expression evaluates for now. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* machines/schnurrkadse: -xmonad +herbstluft +aspellsternenseemann2016-10-201-8/+5
|
* machines/schnurrkadse: bumplukasepple2016-10-201-1/+10
|
* pkgs/santander: Switch to 32bit buildaszlig2016-10-192-5/+7
| | | | | | | | | | Right now the linking process with wineg++ fails on 64bit and I currently don't have time to properly look into why this happens. Another workaround would be to just use patchelf to fix the errors afterwards, but in the end everything except dwb has to be 32bit anyway. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* pkgs/santander: Trim down closure sizeaszlig2016-10-191-2/+4
| | | | | | | | | | | | | | | Since the version bump of wineStaging, stuff like mono and gecko are included when creating a new wineprefix. We can avoid this by overriding DLLs using "mscoree,mshtml=". In addition to that, we now use wineMinimal instead of the wineStaging attribute from nixpkgs so that we really have as few options compiled in as possible, especially because we really don't need them for the plugin. This trims down the closure size by a few hundred megabytes. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* machines/katara: enable searxProfpatsch2016-10-181-1/+1
|
* machines/katara: two-finger scrollingProfpatsch2016-10-181-3/+7
|
* machines/katara: use getBinProfpatsch2016-10-181-3/+4
|
* machines/katara: change fontsettingsProfpatsch2016-10-181-1/+1
|
* machines/katara: +/- some packagesProfpatsch2016-10-181-29/+39
|
* machines/katara: 32bit options for gamesProfpatsch2016-10-181-0/+4
|
* machines/katara: remove references to taffybarProfpatsch2016-10-181-5/+1
|
* modules/i3/conky: Fix weather URLaszlig2016-10-181-1/+1
| | | | | | | The URL has changed, see brndnmtthws/conky#325 for the fix in upstream conky. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* Revert "runCommand -> runCommandCC"aszlig2016-10-176-109/+42
| | | | | | | | | | | | | This reverts commit e3f8d28d6be67257d70035d122263f3a35adc438 and my attempts to mitigate this in 0a50f5fab1abf2e70fd5d7a2dd717c2f2c1b983b and 3b91f25b37ea709f5c86e38a50061199bbed5341. Vuizvui is a repository for experimental stuff, but NOT a dumpster. So please refrain from pushing waste into this repository, like markers for a failed merge. Signed-off-by: aszlig <aszlig@redmoonstudios.org> Cc: @Profpatsch
* machines/katara: Fix evaluation of all testsaszlig2016-10-171-1/+1
| | | | | | | | | | | The tests within Vuizvui currently depend on all machines to evaluate correctly. The option hardware.pulseaudio.extraDaemonConfig doesn't exist hence the evaluation fails. I assume @Profpatsch wanted to use extraConfig, which is for the default.pa. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* Fix evaluation of module listaszlig2016-10-171-1/+2
| | | | | | | | | | | Regression introduced by e3f8d28d6be67257d70035d122263f3a35adc438. Another time where a commit references files without actually adding them. So let's remove the missing module from the module list and let only those machines break which are actually using it. Signed-off-by: aszlig <aszlig@redmoonstudios.org> Cc: @Profpatsch
* runCommand -> runCommandCCProfpatsch2016-10-156-42/+108
|
* machines/tyree: Remove support for rtl8192cuaszlig2016-10-131-3/+0
| | | | | | | Now that internal WiFi is working, we don't need that WiFi dongle anymore. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* hardware/t100ha: Fix support for SDIO WiFi cardaszlig2016-10-133-0/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While I had terse Internet connectivity these days, I haven't checked T100HA hardware related news/patchs very often. Meanwhile a small patch by @tagorereddy popped up on hadess/rtl8723bs#80 which works around the SDIO detection. On some devices the BIOS has an option to map the SDIO controller to PCI instead of ACPI, but the T100HA doesn't have this option. IIUC the issue here is that the controller is already being attached via PCI device ID 80862280, which prevented the platform device from being attached via ACPI. The patch circumvents that by removing PCI device ID 80862280 while probing for ACPI devices in SDHCI (yes, very hacky but works) and forces the ACPI platform device to be initialized if the HID is 80860F14:02. I've rebased and tidied up the original patch a bit to prevent warnings during build. Other than this patch, we now need to add the right firmware and the corresponding parameters to hardware.firmware, so that the actual driver for the WiFi card can be loaded. The firmware parameters are stored in EFI on the host itself: /sys/firmware/efi/efivars/nvram-74b00bd9-805a-4d61-b51f-43268123d113 So I added a copy of it to prevent impurities. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* profiles/packages: Temporarily use Chromium stableaszlig2016-10-131-1/+1
| | | | | | | | | | Chromium's beta channel doesn't build for quite a while because the GYP stuff is heavily broken in beta and dev and we need to move to GN instead. So until that's done I'm going with the stable channel for now. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* kernel: Switch to use boot.kernelPatchesaszlig2016-10-133-24/+17
| | | | | | | | Since NixOS/nixpkgs@da36847d925058fd86f027b64cc712c57be11ad8 we no longer need so much cruft to specify kernel patches, so let's switch to boot.kernelPatches instead of the hackery we had so far. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* machines/fliewatuet: nix sandboxsternenseemann2016-10-101-0/+1
|
* machines/katara: set maxJobs to #coresProfpatsch2016-10-101-1/+1
|
* pkgs: remove (multi-)iec16022Profpatsch2016-10-091-3/+0
| | | | | I experimented with them, but they didn’t lead to a nice solution. Sorry for breakage @aszlig.
* programs/gnupg: Use runCommandCC for wrappersaszlig2016-10-091-2/+2
| | | | | | | | | | Since NixOS/nixpkgs@97bfc2fac92d90c668ae1ec078356d0bd0a9ddb7, runCommand uses stdenvNoCC, so we don't have a compiler available anymore. However, there is now a runCommandCC function which does exactly what we want. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* gajim: Revert "Fix against GnuPG 2.1.13"aszlig2016-10-092-62/+1
| | | | | | | | | This reverts commit f0003b92674a1f4555dd14ffa271622a3889cd84. Gajim 0.16.6 has been released last week and it includes a fix for GnuPG 2, so we no longer need this patch. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* pkgs/tomahawk: Fix build against Qt 5.6aszlig2016-10-092-2/+7
| | | | | | | This actually fixes the build of libjreen against Qt 5.6, the rest of the dependencies work fine with Qt 5.6. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* pkgs: Temporarily disable (multi-)?iec16022aszlig2016-10-091-2/+3
| | | | | | | | | | | Regression introduced in e0abe1dbbda54c1f048b5d38df05e1a3289216a6. This causes the evaluation to fail since 5 days now, so I'm commenting it out until @Profpatsch has either provided the expressions or removed the callPackage references. Signed-off-by: aszlig <aszlig@redmoonstudios.org> Cc: @Profpatsch
* machines/fliewatuet: bumpsternenseemann2016-10-071-2/+11
|
* pkgs/games/humblebundle: reflect changes in version 0.1.9sternenseemann2016-10-071-6/+9
|
* pkgs/profpatsch/display-infos: initProfpatsch2016-10-042-0/+43
| | | | A script to display current time & battery.
* pkgs: Switch to pythonPackages.buildPythonPackageaszlig2016-09-273-5/+5
| | | | | | | Since 771ed59b48bc1257439b4529426cc9047aebc27b, there is no top-level attribute anymore, so let's fix this. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* machines/brawndo: Add axbo to systemPackagesaszlig2016-09-251-0/+1
| | | | Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* starbound: Update to version 1.1.1aszlig2016-09-191-7/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The archive format changed back to zip (as it was prior to version 1.1.0) and there is no longer an "update_tilesets" binary in the upstream distribution. Also a few library dependencies have been changed, so it's no longer sufficient to just provide mesa and SDL2 but we now also need to add a few X libraries. Upstream changes: * Make previously captured monsters and previously completed fossils unlock their relevant collectible entries * Pets and fossils will need to be dropped and picked back up as item drops in order to register as collectables * Better handling of status effects applied by weather, e.g. acid rain * Fix bug with Snuffish and Gosmet not being properly added to monster collection * Fix swapped collection entries for Avian and Apex skeleton fossils * Prevent critters captured in previous versions from also being relocatable * Add a few missing recipe unlocks for cooking recipes to relevant items * Add missing documentation for a few new Lua functions Upstream announcement of version 1.1.1 can be found here: http://playstarbound.com/1-1-1-changelog/ Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* machines/katara: fixed a bug in xmpp-client patchProfpatsch2016-09-171-2/+2
|
* machines/katara/xmpp-client: use patched repoProfpatsch2016-09-161-2/+13
|
* machines/katara/xmpp-client: fix fifoProfpatsch2016-09-161-3/+3
| | | | Now it really does use a fifo and not a file
* hardware/t100ha: Pin kernel to Linux 4.7aszlig2016-09-161-21/+1
| | | | | | | | | Kernel 4.8 currently has an Intel GFX regression right now, so let's keep it at kernel 4.7 until we have properly bisected the issue and/or have a fix for this. Signed-off-by: aszlig <aszlig@redmoonstudios.org> Upstream issue: https://bugs.freedesktop.org/show_bug.cgi?id=97529
* machines/katara: logging for xmpp-clientProfpatsch2016-09-161-2/+12
| | | | Enable logging of xmpp-client output with `script(1)`.
* machines/katara: extract lib & add xmpp-clientProfpatsch2016-09-165-19/+36
| | | | | | | Some stuff is needed in multiple files, like the home directory. Extracted out into lib.nix. xmpp-client uses that to create a wrapper for splicing the password into the config at program invocation.
* pkgs/stackenblocken: lower gain of jingleProfpatsch2016-09-161-1/+1
|
* profiles/workstation: Remove RXVT-specific optionsaszlig2016-09-121-11/+0
| | | | | | | I didn't use RXVT for years now, so it doesn't make sense to set options for it here. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* modules/gnupg: Fix path to libsystemd.soaszlig2016-09-111-1/+1
| | | | | | | The systemd library has been splitted off into a different output in NixOS/nixpkgs@78178d5854901e1b17a14bce3fe43515984b7b91. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* core/tests: Add and remove upstream NixOS testsaszlig2016-09-111-6/+10
| | | | | | | | | | | | | | | | | New tests as of NixOS/nixpkgs@4ac7b7d5deb4a2ccf291c1251ff7515f1ab17c82: * nixos.kde5 * nixos.ferm * nixos.quagga The following tests were removed: * nixos.dockerRegistry * nixos.sddm The test for SDDM is now included within the KDE5 test. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* pkgs/starbound: Update to version 1.1.0aszlig2016-09-111-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | The upstream archive is now a RAR archive, so we need to use unrar instead of unzip. Major upstream changes: * Fishing * Two tiers of fishing rods are now craftable from the Foraging Table and can be used to fish on ocean planets (including arctic, toxic and magma oceans) * Added 48 unique fish types to catch * Rare fish can give valuable rewards, including reel and lure upgrades to enhance your fishing rod * Collections * New Collections interface tracks various kinds of collectables including captured pets, figurines, fish, cooking recipes, fossils, and bugs * Added the Relocator tool, which allows non-hostile creatures such as critters, fish, bugs, and farm animals to be moved * Added friendly Novakid villages including a variety of new Novakid-themed furniture and objects The full list of upstream changes can be found at: http://playstarbound.com/starbound-1-1-changelog/ Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* hardware/rtl8192cu: Update to latest Git masteraszlig2016-09-072-19/+2
| | | | | | | The upstream repository now has support for kernel 4.x, so we no longer need the patch. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* hardware/rtl8192cu: Disable some hardening flagsaszlig2016-09-071-0/+2
| | | | | | | | These flags are applied via the kernel config, so if we add it using our compiler wrapper the kernel build process is unable to detect these flags and the build will fail. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* workstation/packages: Fix reference to xhostaszlig2016-09-071-1/+1
| | | | Signed-off-by: aszlig <aszlig@redmoonstudios.org>