about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2014-07-29 02:32:46 +0200
committeraszlig <aszlig@redmoonstudios.org>2014-07-29 02:32:46 +0200
commitb4010f9690c7b8fe4ad5f70be82f483ee253da1e (patch)
treec724a40636310a0bf626908e37aa3fe4f68daf32 /machines
parentf021b38765b52b69ac93960e154f2db0f857647f (diff)
Change namespaces into new project name "vuizvui".
I found "nixconf" a little big too generic and thus not unlikely enough
to someday collide with something in <nixpkgs>. That's why I chose the
name "vuizvui" as a Bavarion word (actually _two_ words: "vui zvui") for
"far too much", in terms of the opposite of "nix" - which means
"nothing".

A possible downside for choosing this name is that it might be
jawbreaker to some English native speakers out there, but I don't really
care if the pronunciation is correct nor do I expect to get a lot of
public attention on this repository.

And yes, for English native speakers, a pronunciation like "fui-tsui" is
probably okay as well :-)

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'machines')
-rw-r--r--machines/dnyarri.nix14
-rw-r--r--machines/mmrnmhrm.nix12
2 files changed, 13 insertions, 13 deletions
diff --git a/machines/dnyarri.nix b/machines/dnyarri.nix
index ad385001..f620307a 100644
--- a/machines/dnyarri.nix
+++ b/machines/dnyarri.nix
@@ -44,12 +44,12 @@ with import ../lib;
       "radeon/RV730_smc.bin"
     ];
 
-    linuxAszlig = pkgs.buildLinux {
-      inherit (pkgs.kernelSourceAszlig) version src;
+    linuxVuizvui = pkgs.buildLinux {
+      inherit (pkgs.kernelSourceVuizvui) version src;
 
-      kernelPatches = singleton pkgs.aszligKernelPatches.bfqsched;
+      kernelPatches = singleton pkgs.vuizvuiKernelPatches.bfqsched;
       configfile = pkgs.substituteAll {
-        name = "aszlig-with-firmware.kconf";
+        name = "vuizvui-with-firmware.kconf";
         src = generateKConf (import ./dnyarri-kconf.nix);
 
         extra_firmware = concatStringsSep " " (radeonFW ++ [
@@ -74,7 +74,7 @@ with import ../lib;
     };
   in rec {
     kernelPackages = let
-      kpkgs = pkgs.linuxPackagesFor linuxAszlig kernelPackages;
+      kpkgs = pkgs.linuxPackagesFor linuxVuizvui kernelPackages;
       virtualbox = kpkgs.virtualbox.override {
         enableExtensionPack = true;
       };
@@ -133,8 +133,8 @@ with import ../lib;
   services.xserver.videoDrivers = [ "ati" ];
   services.xserver.xrandrHeads = [ "HDMI-0" "DVI-0" ];
 
-  aszlig.i3.reverseHeads = true;
-  aszlig.i3.workspaces."6" = {
+  vuizvui.i3.reverseHeads = true;
+  vuizvui.i3.workspaces."6" = {
     label = "Chromium";
     assign = singleton { class = "^Chromium(?:-browser)?\$"; };
   };
diff --git a/machines/mmrnmhrm.nix b/machines/mmrnmhrm.nix
index e52cfd4d..29b72699 100644
--- a/machines/mmrnmhrm.nix
+++ b/machines/mmrnmhrm.nix
@@ -9,16 +9,16 @@ with import ../lib;
   nix.maxJobs = 2;
 
   boot = let
-    linuxAszlig = pkgs.buildLinux {
-      inherit (pkgs.kernelSourceAszlig) version src;
+    linuxVuizvui = pkgs.buildLinux {
+      inherit (pkgs.kernelSourceVuizvui) version src;
 
-      kernelPatches = singleton pkgs.aszligKernelPatches.bfqsched;
+      kernelPatches = singleton pkgs.vuizvuiKernelPatches.bfqsched;
       configfile = generateKConf (import ./mmrnmhrm-kconf.nix);
       allowImportFromDerivation = true;
     };
   in rec {
     kernelPackages = pkgs.recurseIntoAttrs
-      (pkgs.linuxPackagesFor linuxAszlig kernelPackages);
+      (pkgs.linuxPackagesFor linuxVuizvui kernelPackages);
 
     loader.grub.devices = map (i: "/dev/disk/by-id/${i}") [
       "ata-WDC_WD10EZEX-00BN5A0_WD-WCC3F5756955"
@@ -53,12 +53,12 @@ with import ../lib;
   services.xserver.videoDrivers = [ "nouveau" ];
   services.xserver.xrandrHeads = [ "DVI-I-1" "VGA-1" ];
 
-  aszlig.i3.workspaces."1" = {
+  vuizvui.i3.workspaces."1" = {
     label = "XMPP";
     assign = singleton { class = "^(?:Tkabber|Gajim)\$"; };
   };
 
-  aszlig.i3.workspaces."3" = {
+  vuizvui.i3.workspaces."3" = {
     label = "Chromium";
     assign = singleton { class = "^Chromium(?:-browser)?\$"; };
   };