From cc4d8f9dbd142fa57d747e983a78955c79cc0c3a Mon Sep 17 00:00:00 2001 From: Daniel Dada Date: Mon, 15 Dec 2025 01:19:07 +0300 Subject: [PATCH] updated readme --- README.md | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 075505c..8ce48e9 100644 --- a/README.md +++ b/README.md @@ -39,22 +39,12 @@ A theme management tool for synchronizing color schemes across multiple applicat 2. Import the Home Manager module -In your flake outputs: +In home.nix: ```nix -outputs = { self, nixpkgs, home-manager, clrsync, ... }: { - homeConfigurations."username" = home-manager.lib.homeManagerConfiguration { - pkgs = nixpkgs.legacyPackages.x86_64-linux; - - modules = [ - clrsync.homeManagerModules.default - { - programs.clrsync.package = clrsync.packages.x86_64-linux.default; - } - # ... - ]; - }; -}; + imports = [ + inputs.clrsync.homemanagermodules.default + ]; ``` 3. Configure in home manager @@ -62,7 +52,7 @@ outputs = { self, nixpkgs, home-manager, clrsync, ... }: { ```nix programs.clrsync = { enable = true; - + package = inputs.clrsync.packages.x86_64-linux.default; defaultTheme = "dark"; palettesPath = "~/.config/clrsync/palettes"; font = "JetBrainsMono Nerd Font Mono";