Merge remote-tracking branch 'origin/main'
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
A nixos module for installing a pre-configured development environment for JMU's CS345 on NixOS
|
A pre-configured development environment for JMU's CS345 on NixOS
|
||||||
## 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
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user