all repos — nixfiles @ 8a52c1acb46ba99584ee4cc7c83161d972718a59

System and user configuration, managed by nix and home-manager

Remove stow and scripts
Alan Pearce alan@alanpearce.eu
Fri, 04 Oct 2019 21:35:17 +0200
commit

8a52c1acb46ba99584ee4cc7c83161d972718a59

parent

43a23a0eef135a07905c64a00ea620ba676e95ae

4 files changed, 0 insertions(+), 43 deletions(-)

jump to
M system/modules/programs/dotfiles.nixsystem/modules/programs/dotfiles.nix
@@ -1,7 +1,6 @@ { config, pkgs, ... }:
 
 { environment.systemPackages = with pkgs; [
-    stow
     fzf
     ghq
   ] ++ (
D user/adopt
@@ -1,29 +0,0 @@-#!/bin/sh
-DOTFILES_DIR=$(dirname $0)
-STOW="$DOTFILES_DIR/stow"
-
-if [ "$#" -lt 2 ]
-then
-  echo "usage: $(basename $0) tag file-to-adopt"
-  exit 1
-fi
-
-if [ -d $2 ]
-then
-  TARGET="$DOTFILES_DIR/$1/$2"
-  if ! [ -d $TARGET ]
-  then
-    mkdir -p $TARGET
-  fi
-  mv $2/* $TARGET
-  $STOW $1
-elif [ -f $2 ]
-then
-  TARGET="$DOTFILES_DIR/$1/$(dirname $2)"
-  if ! [ -d $TARGET ]
-  then
-    mkdir -p $TARGET
-  fi
-  mv $2 $TARGET
-  $STOW $1
-fi
D user/stow
@@ -1,2 +0,0 @@-#!/bin/sh
-stow --target="$HOME" --no-folding "$@"
D user/unstow-all
@@ -1,11 +0,0 @@-#!/usr/bin/env zsh
-
-set -euo pipefail
-
-echo "Checking if all packages can be unstowed"
-./stow -Dn --ignore="tabnine_config\.json" *(/)
-
-echo "Unstowing!"
-./stow -D --ignore="tabnine_config\.json" *(/)
-
-rmdir ~/.config/nixpkgs || echo "Could not remove nixpkgs directory. Remove it manually before running the installer."