otd again and rnote

This commit is contained in:
twoneis 2024-08-29 02:49:08 +02:00
parent 8b759a40f4
commit ff121c61b6
2 changed files with 9 additions and 1 deletions

View file

@ -1,9 +1,13 @@
{ lib, config, ... }: let { lib, config, pkgs, ... }: let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (config) conf; inherit (config) conf;
inherit (config.conf) keys; inherit (config.conf) keys;
in mkIf conf.apps.enable { in mkIf conf.apps.enable {
home-manager.users.${conf.username} = { home-manager.users.${conf.username} = {
home.packages = with pkgs; [
rnote
];
programs.sioyek = { programs.sioyek = {
enable = true; enable = true;
bindings = { bindings = {

View file

@ -38,5 +38,9 @@ in {
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" ];
}; };
hardware.opentabletdriver = {
enable = true;
};
system.stateVersion = conf.stateVersion; system.stateVersion = conf.stateVersion;
} }