From 1ff35e7d98d92806db219eb64c043a273f417926 Mon Sep 17 00:00:00 2001 From: Eclypsed <116935158+Eclypsed@users.noreply.github.com> Date: Tue, 15 Apr 2025 08:13:49 -0400 Subject: [PATCH] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ad93e27..9d8be69 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -A nixos module for installing a pre-configured development environment for JMU's CS345 +A pre-configured development environment for JMU's CS345 ## Setup ### Using flakes Inside your main `flake.nix` @@ -7,14 +7,17 @@ Inside your main `flake.nix` description = "System Configuration Flake"; inputs = { + # ... nix-jmu-cs345.url = "github:Eclypsed/nix-jmu-cs345/main"; }; - outputs = { nix-jmu-cs345, ... }@inputs: { + outputs = { nixpkgs, nix-jmu-cs345, ... }@inputs: { nixosConfigurations = { + # replace with your actual hostname = nixpkgs.lib.nixosSystem { # ... modules = [ + # ... nix-jmu-cs345.nixosModules.bernstdh ]; };