Remove stow and scripts
Alan Pearce alan@alanpearce.eu
Fri, 04 Oct 2019 21:35:17 +0200
4 files changed, 0 insertions(+), 43 deletions(-)
M system/modules/programs/dotfiles.nix → system/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/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."