wow
Some checks failed
CI / list-packages (push) Has been cancelled
CI / check (push) Has been cancelled

This commit is contained in:
암냥 2026-05-25 15:01:16 +09:00
commit 4d92af12fb
No known key found for this signature in database
3 changed files with 0 additions and 64 deletions

View file

@ -42,33 +42,3 @@ Add the following to your nix configuration:
```
## Modules
### helium-sync
#### NixOS
```nix
{
inputs.imnyang.url = "git+https://git.mizuki.guru/imnyang/nix-packages.git";
outputs = { self, nixpkgs, imnyang }: {
nixosConfigurations.my-host = nixpkgs.lib.nixosSystem {
modules = [
imnyang.nixosModules.helium-sync
];
};
};
}
```
#### Home Manager
```nix
{
inputs.imnyang.url = "git+https://git.mizuki.guru/imnyang/nix-packages.git";
outputs = { self, home-manager, imnyang, ... }: {
homeConfigurations.my-user = home-manager.lib.homeManagerConfiguration {
modules = [
imnyang.homeManagerModules.helium-sync
];
};
};
}
```