From 695006312e7b78fc2ea952e0da5e0822a448e60f Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Wed, 19 Jan 2022 11:19:42 -0500 Subject: [PATCH] Remove some unnecessary stuff after moving to flakes --- user/.gitignore | 2 -- user/README.md | 2 +- user/install.sh | 5 ----- 3 files changed, 1 insertion(+), 8 deletions(-) delete mode 100644 user/.gitignore delete mode 100755 user/install.sh diff --git a/user/.gitignore b/user/.gitignore deleted file mode 100644 index bb462fd..0000000 --- a/user/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/home.nix -/config.nix \ No newline at end of file diff --git a/user/README.md b/user/README.md index 6ece2ce..6d56a4e 100644 --- a/user/README.md +++ b/user/README.md @@ -1,5 +1,5 @@ # Home Manager Configuration -This directory contains my configuration for home-manager, which can be easily installed by running `./install.sh {machine name}`. +This directory contains my configuration for home-manager. The `machines` folder contains userland configs for specific machines. Each of these configs will import modules from the `modules` folder for shell config, git config, etc. \ No newline at end of file diff --git a/user/install.sh b/user/install.sh deleted file mode 100755 index 441fcdd..0000000 --- a/user/install.sh +++ /dev/null @@ -1,5 +0,0 @@ -# Where first arg is directory under machines -mkdir -p $HOME/.config -ln -s $(pwd) $HOME/.config/nixpkgs -ln -s $(pwd)/machines/$1/home.nix $HOME/.config/nixpkgs/home.nix -ln -s $(pwd)/machines/$1/config.nix $HOME/.config/nixpkgs/config.nix