Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/larusso/nix-home
configuration deployed using the helpful tool https://github.com/rycee/home-manager
https://github.com/larusso/nix-home
dotfiles home-manager nix nixos-configuration
Last synced: 18 days ago
JSON representation
configuration deployed using the helpful tool https://github.com/rycee/home-manager
- Host: GitHub
- URL: https://github.com/larusso/nix-home
- Owner: Larusso
- License: mit
- Created: 2020-03-13T19:35:02.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-06T10:36:03.000Z (about 4 years ago)
- Last Synced: 2024-11-03T16:42:13.614Z (2 months ago)
- Topics: dotfiles, home-manager, nix, nixos-configuration
- Language: Nix
- Homepage:
- Size: 40 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Nix Home
========This repository contains user configuration deployed using the helpful tool [Home Manager].
In order to setup a new home sapce, simply add a home.nix file similar to this one.```nix
{ config, pkgs, ... }:{
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;imports = [
./machine/apollo
./user/x
./role/darwin-laptop
];
}
```* **Machine** contains configuration specific to a given machine.
* **User** contains configuration specific to a given user, think git config etc.
* **Role** contains the bulk of the configuration and sets up most user space tools, think neovim and your terminal.[Home Manager]: https://github.com/rycee/home-manager