home: add remarkable support

This commit is contained in:
insects 2024-11-03 12:55:46 +01:00
parent 4b092bc31a
commit f701939805
2 changed files with 9 additions and 0 deletions

View file

@ -3,6 +3,7 @@
imports = [
./global.nix
./features/desktop
./features/desktop/remarkable.nix
./features/devel/js.nix
./features/devel/java.nix
./features/devel/rust.nix

View file

@ -0,0 +1,8 @@
# This is in a separate file because the software I use to manage my tablet is
# paid, and needs to be downloaded before being able to build its derivation.
# This might be annoying for new setups, so it's opt-out by default.
{ pkgs, ... }:
{
home.packages = with pkgs; [ rcu ];
}