Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eikek/confnix
my nixos config files
https://github.com/eikek/confnix
nixos nixos-configuration
Last synced: 2 months ago
JSON representation
my nixos config files
- Host: GitHub
- URL: https://github.com/eikek/confnix
- Owner: eikek
- Created: 2014-11-25T14:25:32.000Z (about 10 years ago)
- Default Branch: nixos-24.05
- Last Pushed: 2024-10-24T09:03:57.000Z (2 months ago)
- Last Synced: 2024-10-24T11:56:53.232Z (2 months ago)
- Topics: nixos, nixos-configuration
- Language: Nix
- Size: 998 KB
- Stars: 5
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# confnix -- my nixos config files
These are the configuration file for some of my
[NixOs](http://nixos.org) installations.## Setup
cd /etc/nixos
git clone https://github.com/eikek/confnix
ln -s confnix/flake.nix .
nixos-rebuild switch## Try out packages
Try out some packages defined [here](pkgs/) using `nix build` or `nix
run`:nix build .#chee
## Build a machines configuration
To test build a machine configuration, the machine can be given to
`nixos-rebuild` command:``` bash
nixos-rebuild build --flake .#kalamos
```To create vm of some machine's config:
```
nixos-rebuild build-vm --flake .#kalamos
```To deploy at some machine:
```
nixos-rebuild --flake .#icaria --target-host [email protected] --fast switch
```