Update README.md

This commit is contained in:
Eclypsed
2025-04-15 08:13:49 -04:00
committed by GitHub
parent 799493c4ae
commit 1ff35e7d98

View File

@@ -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 ## Setup
### Using flakes ### Using flakes
Inside your main `flake.nix` Inside your main `flake.nix`
@@ -7,14 +7,17 @@ Inside your main `flake.nix`
description = "System Configuration Flake"; description = "System Configuration Flake";
inputs = { inputs = {
# ...
nix-jmu-cs345.url = "github:Eclypsed/nix-jmu-cs345/main"; nix-jmu-cs345.url = "github:Eclypsed/nix-jmu-cs345/main";
}; };
outputs = { nix-jmu-cs345, ... }@inputs: { outputs = { nixpkgs, nix-jmu-cs345, ... }@inputs: {
nixosConfigurations = { nixosConfigurations = {
# replace <your-hostname> with your actual hostname
<your-hostname> = nixpkgs.lib.nixosSystem { <your-hostname> = nixpkgs.lib.nixosSystem {
# ... # ...
modules = [ modules = [
# ...
nix-jmu-cs345.nixosModules.bernstdh nix-jmu-cs345.nixosModules.bernstdh
]; ];
}; };