diff options
| author | Chris Wells <chris@mathematicaster.org> | 2024-09-10 11:52:55 -0500 |
|---|---|---|
| committer | Chris Wells <chris@mathematicaster.org> | 2024-09-10 11:53:30 -0500 |
| commit | 5cb16c34a8c5b803ec723934c1dc828c0e8e3bad (patch) | |
| tree | 082671e90b6da26a0c06c1a5abc7a4571e0dcc84 /flake.nix | |
| parent | 8eae39e8e670f228e9675fb3bc432ce512560396 (diff) | |
| download | kobo-manager-5cb16c34a8c5b803ec723934c1dc828c0e8e3bad.tar kobo-manager-5cb16c34a8c5b803ec723934c1dc828c0e8e3bad.tar.gz kobo-manager-5cb16c34a8c5b803ec723934c1dc828c0e8e3bad.tar.bz2 kobo-manager-5cb16c34a8c5b803ec723934c1dc828c0e8e3bad.tar.lz kobo-manager-5cb16c34a8c5b803ec723934c1dc828c0e8e3bad.tar.xz kobo-manager-5cb16c34a8c5b803ec723934c1dc828c0e8e3bad.tar.zst kobo-manager-5cb16c34a8c5b803ec723934c1dc828c0e8e3bad.zip | |
Trying to get everything to actually work
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 17 |
1 files changed, 12 insertions, 5 deletions
@@ -9,6 +9,7 @@ outputs = inputs@{ self, nixpkgs, flake-utils, ... }: { lib = import ./lib { inherit (nixpkgs) lib; }; + overlays.default = import ./overlays; } // flake-utils.lib.eachDefaultSystem (system: @@ -17,12 +18,19 @@ inherit system; overlays = builtins.attrValues self.overlays; }; - myKobo = self.lib.koboConfiguration { - inherit pkgs; - modules = [ ./config ]; - }; + # myKobo = self.lib.koboConfiguration { + # inherit pkgs; + # modules = [ ./config ]; + # }; in { + koboConfigurations = { + clara = self.lib.koboConfiguration { + inherit pkgs; + modules = [ ./kobo/clara ]; + }; + }; + packages = { inherit (pkgs) kepubify @@ -33,7 +41,6 @@ nickel-menu plato ; - default = myKobo.config.build.src; firmware-test = pkgs.kobo-firmware { hardware = "kobo7"; date = "Jun2024"; |
