An open API service indexing awesome lists of open source software.

https://github.com/tfc/nixos-configs

My personal NixOS configs for different machines.
https://github.com/tfc/nixos-configs

Last synced: about 1 year ago
JSON representation

My personal NixOS configs for different machines.

Awesome Lists containing this project

README

          

# Local deployment of a config

```sh
# flake system attribute is automatically selected from current hostname
nixos-rebuild switch --flake github:tfc/nixos-configs
```

or

```sh
nix build github:tfc/nixos-configs#nixosConfigurations..config.system.build.toplevel
sudo nix-env -p /nix/var/nix/profiles/system --set $(readlink result)
sudo ./result/bin/switch-to-configuration switch
```

# Remote deployment of a config

```sh
nixos-rebuild switch --flake github:tfc/nixos-configs# --target-host --use-remote-sudo
```