diff --git a/modules/apps/notes.nix b/modules/apps/notes.nix index b0cf9a0..a394446 100644 --- a/modules/apps/notes.nix +++ b/modules/apps/notes.nix @@ -1,9 +1,13 @@ -{ lib, config, ... }: let +{ lib, config, pkgs, ... }: let inherit (lib) mkIf; inherit (config) conf; inherit (config.conf) keys; in mkIf conf.apps.enable { home-manager.users.${conf.username} = { + home.packages = with pkgs; [ + rnote + ]; + programs.sioyek = { enable = true; bindings = { diff --git a/modules/default.nix b/modules/default.nix index b3448a1..7a87104 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -38,5 +38,9 @@ in { extraGroups = [ "networkmanager" "wheel" ]; }; + hardware.opentabletdriver = { + enable = true; + }; + system.stateVersion = conf.stateVersion; }