Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timjb/dotfiles
My config files.
https://github.com/timjb/dotfiles
nixos-configuration personal-dotfiles
Last synced: about 1 month ago
JSON representation
My config files.
- Host: GitHub
- URL: https://github.com/timjb/dotfiles
- Owner: timjb
- License: mit
- Created: 2010-06-27T19:45:34.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2023-08-01T08:36:01.000Z (over 1 year ago)
- Last Synced: 2024-10-23T04:52:20.565Z (3 months ago)
- Topics: nixos-configuration, personal-dotfiles
- Language: Vim Script
- Homepage:
- Size: 6.34 MB
- Stars: 7
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- License: LICENSE
Awesome Lists containing this project
README
Because I'm homesick.
Installation
============Clone the repository:
```bash
$ cd ~/Projects
$ git clone https://github.com/timjb/dotfiles.git
```Init submodules:
```bash
$ cd dotfiles
$ git submodule init
$ git submodule update
```Create symlinks. `./install.sh` does that for you.
On NixOS, when installing on a new machine:
```bash
$ cd /path/to/this/repo/nixos
$ sudo mv /etc/nixos/configuration.nix my-new-machine-configuration.nix
$ sudo mv /etc/nixos/hardware-configuration.nix my-new-machine-hardware-configuration.nix
$ ln -s my-new-machine-configuration.nix configuration.nix
# edit my-new-machine-configuration.nix
$ sudo rm /etc/nixos
$ ln -s /path/to/this/repo/nixos /etc/nixos
```