aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorChris Wells <chris@mathematicaster.org>2024-09-11 12:51:28 -0500
committerChris Wells <chris@mathematicaster.org>2024-09-11 12:51:28 -0500
commita99ef161f3d04c04d1d55369d1250634d84a90c3 (patch)
treebbf702ae9ac9bc7cb0efa8f02ba5c40dfe436417 /flake.nix
parentc3052ddc4e54092bfc9220d550ab4d8fcba166de (diff)
downloadkobo-manager-master.tar
kobo-manager-master.tar.gz
kobo-manager-master.tar.bz2
kobo-manager-master.tar.lz
kobo-manager-master.tar.xz
kobo-manager-master.tar.zst
kobo-manager-master.zip
Starting to write the actual cli managerHEADmaster
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix25
1 files changed, 9 insertions, 16 deletions
diff --git a/flake.nix b/flake.nix
index 73e7ce3..8781602 100644
--- a/flake.nix
+++ b/flake.nix
@@ -18,13 +18,10 @@
inherit system;
overlays = builtins.attrValues self.overlays;
};
- # myKobo = self.lib.koboConfiguration {
- # inherit pkgs;
- # modules = [ ./config ];
- # };
in {
- koboConfigurations = {
+ koboConfigurations = rec {
+ default = clara;
clara = self.lib.koboConfiguration {
inherit pkgs;
modules = [ ./kobo/clara ];
@@ -41,19 +38,15 @@
nickel-menu
plato
;
- # firmware-test = pkgs.kobo-firmware {
- # hardware = "kobo7";
- # date = "Jun2024";
- # version = "4.38.23038";
- # hash = "sha256-ma9Hf0Hc4hDqf1KQwM6TdX3lZo9HPWMrQqU45eFBScs=";
- # };
- # installer = myKobo.config.installer.package;
};
- # apps = {
- # type = "app";
- # program = "${pkgs.lib.getExe myKobo.config.installer.package} ${myKobo.config.kobo.src}";
- # };
+ devShells = {
+ default = pkgs.mkShellNoCC {
+ buildInputs = [
+ pkgs.kobo-utils
+ ];
+ };
+ };
});
}