Skip to content

Commit

Permalink
Rename to nixos-unified-template (#91)
Browse files Browse the repository at this point in the history
As the de facto template of https://nixos-unified.org/
  • Loading branch information
srid authored Oct 3, 2024
1 parent 3daae28 commit 75586c0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![project chat](https://img.shields.io/badge/zulip-join_chat-brightgreen.svg)](https://nixos.zulipchat.com/#narrow/stream/413950-nix)

# nix-dev-home
# nixos-unified-template

A multi-platform Nix configuration template optimized as development environment, based on [nixos-unified]. See [`./modules`](modules/) to see what's available.

Expand All @@ -11,7 +11,7 @@ A multi-platform Nix configuration template optimized as development environment

## Status

We currently support [home-manager] (see `./modules/home`) and [nix-darwin] (see `./modules/darwin`); NixOS support is in progress (see https://github.com/juspay/nix-dev-home/issues/86).
We currently support [home-manager] (see `./modules/home`) and [nix-darwin] (see `./modules/darwin`); NixOS support is in progress (see https://github.com/juspay/nixos-unified-template/issues/86).

| Platform | Supported By |
|-------------|-------------------------------------------|
Expand All @@ -30,7 +30,7 @@ We currently support [home-manager] (see `./modules/home`) and [nix-darwin] (see
```sh-session
mkdir ~/nixconfig && cd ~/nixconfig
nix --accept-flake-config run github:juspay/omnix -- \
init github:juspay/nix-dev-home -o .
init github:juspay/nixos-unified-template -o .
```
<img width="1092" alt="image" src="https://github.com/user-attachments/assets/1341d200-d894-488c-ba74-42d8830cc6f7">

Expand Down
2 changes: 1 addition & 1 deletion modules/flake-parts/devshell.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
perSystem = { pkgs, ... }: {
devShells.default = pkgs.mkShell {
name = "nix-dev-home-shell";
name = "nixos-unified-template-shell";
meta.description = "Shell environment for modifying this Nix configuration";
packages = with pkgs; [
just
Expand Down
4 changes: 2 additions & 2 deletions modules/flake-parts/template.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
home = let parent = templates.default; in {
description = mkDescription "home-manager";
welcomeText = ''
You have just created a nix-dev-home flake.nix using home-manager.
You have just created a nixos-unified-template flake.nix using home-manager.
- Edit `./modules/home/*.nix` to customize your configuration.
- Run `nix run` to apply the configuration.
Expand All @@ -55,7 +55,7 @@
nix-darwin = let parent = templates.default; in {
description = mkDescription "nix-darwin";
welcomeText = ''
You have just created a nix-dev-home flake.nix using nix-darwin / home-manager.
You have just created a nixos-unified-template flake.nix using nix-darwin / home-manager.
- Edit `./modules/{home,darwin}/*.nix` to customize your configuration.
Expand Down

0 comments on commit 75586c0

Please sign in to comment.