https://github.com/ony/nixony
Cherry-picked components from ony's Nix configs
https://github.com/ony/nixony
Last synced: 8 months ago
JSON representation
Cherry-picked components from ony's Nix configs
- Host: GitHub
- URL: https://github.com/ony/nixony
- Owner: ony
- License: mit
- Created: 2021-11-26T23:07:04.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-11-30T08:46:39.000Z (over 1 year ago)
- Last Synced: 2025-04-10T01:57:44.858Z (about 1 year ago)
- Language: Nix
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
## Usage
Example:
```nix
{
home-manager.url = "github:nix-community/home-manager";
nixony.url = "github:ony/nixony";
nix-script.url = "github:BrianHicks/nix-script"; # if you use nix-script-* packages
outputs = { home-manager, nix-script, nixony, ... }: {
homeConfigurations.smith = home-manager.lib.homeManagerConfiguration {
configuration = {
imports = [
nixony.homeManagerModules.neovim-tree-sitter
./home.nix
];
nixpkgs.overlays = [
nix-script.overlay
nixony.overlay # brings packages like pidgin-chime and nix-script-ruby
];
# ...
};
# ...
};
};
}
```
Note that scripts like `nix-script-ruby` may require `nix-script` (from
`BrianHicks/nix-script`) to be visible in your `$PATH` be it user or
system-wide.