From b4010f9690c7b8fe4ad5f70be82f483ee253da1e Mon Sep 17 00:00:00 2001 From: aszlig Date: Tue, 29 Jul 2014 02:32:46 +0200 Subject: 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 . 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 --- modules/i3/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules') diff --git a/modules/i3/default.nix b/modules/i3/default.nix index 25121fa3..1d88a6e7 100644 --- a/modules/i3/default.nix +++ b/modules/i3/default.nix @@ -14,7 +14,7 @@ let headCount = length config.services.xserver.xrandrHeads; wsPerHead = wsCount / headCount; excessWs = wsCount - (headCount * wsPerHead); - headModifier = if config.aszlig.i3.reverseHeads then reverseList else id; + headModifier = if config.vuizvui.i3.reverseHeads then reverseList else id; getHeadAt = elemAt (headModifier config.services.xserver.xrandrHeads); mkDefaultWorkspace = number: numberSymbol: { @@ -29,12 +29,12 @@ let }; }; - wsCfgList = mapAttrsToList (_: getAttr "config") config.aszlig.i3.workspaces; + wsCfgList = mapAttrsToList (_: getAttr "config") config.vuizvui.i3.workspaces; wsConfig = concatStrings wsCfgList; defaultWorkspaces = listToAttrs (imap mkDefaultWorkspace wsNumberSymbols); in { - options.aszlig.i3 = { + options.vuizvui.i3 = { workspaces = mkOption { type = types.attrsOf (types.submodule ./workspace.nix); default = listToAttrs (imap mkDefaultWorkspace wsNumberSymbols); @@ -60,7 +60,7 @@ in }; }; - config.aszlig.i3.workspaces = defaultWorkspaces; + config.vuizvui.i3.workspaces = defaultWorkspaces; config.services.xserver.windowManager = { default = "i3"; -- cgit 1.4.1