8 lines
284 B
Nix
8 lines
284 B
Nix
# 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 ];
|
|
}
|