Skip to content

Commit

Permalink
docs(README): update links to whiskers repo
Browse files Browse the repository at this point in the history
  • Loading branch information
sgoudham committed Jun 5, 2024
1 parent a0748d0 commit 6097031
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ Add the following to your `flake.nix`:
```nix
{
inputs = {
catppuccin-toolbox.url = "github:catppuccin/toolbox";
catppuccin-toolbox.url = "github:catppuccin/whiskers";
};
outputs = {nixpkgs, catppuccin-toolbox, ...}: {
outputs = {nixpkgs, catppuccin-whiskers, ...}: {
nixosConfigurations.HOSTNAME = nixpkgs.lib.nixosSystem {
modules = [
{
environment.systemPackages = [
catppuccin-toolbox.packages.${pkgs.system}.whiskers
catppuccin-whiskers.packages.${pkgs.system}.default
];
}
];
Expand All @@ -62,17 +62,17 @@ Add the following to your `flake.nix`:
inputs.nixpkgs.follows = "nixpkgs";
};
catppuccin-toolbox.url = "github:catppuccin/toolbox";
catppuccin-whiskers.url = "github:catppuccin/whiskers";
};
outputs = {nixpkgs, home-manager, catppuccin-toolbox, ...}: {
outputs = {nixpkgs, home-manager, catppuccin-whiskers, ...}: {
homeConfigurations."user@hostname" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
modules = [
{
home.packages = [
catppuccin-toolbox.packages.${pkgs.system}.whiskers
catppuccin-whiskers.packages.${pkgs.system}.default
];
}
];
Expand All @@ -88,18 +88,18 @@ Add the following to your configuration:
```nix
{config, pkgs, ...}: let
flake-compat = builtins.fetchTarball "https://github.com/edolstra/flake-compat/archive/master.tar.gz";
catppuccin-toolbox = (import flake-compat {
src = builtins.fetchTarball "https://github.com/catppuccin/toolbox/archive/main.tar.gz";
catppuccin-whiskers = (import flake-compat {
src = builtins.fetchTarball "https://github.com/catppuccin/whiskers/archive/main.tar.gz";
}).defaultNix;
in {
# Home Manager
home.packages = [
catppuccin-toolbox.packages.${pkgs.system}.whiskers
catppuccin-whiskers.packages.${pkgs.system}.default
];
# Nix
environment.systemPackages = [
catppuccin-toolbox.packages.${pkgs.system}.whiskers
catppuccin-whiskers.packages.${pkgs.system}.default
];
}
```
Expand Down

0 comments on commit 6097031

Please sign in to comment.