otd again and rnote
This commit is contained in:
parent
8b759a40f4
commit
ff121c61b6
2 changed files with 9 additions and 1 deletions
|
@ -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 = {
|
||||||
|
|
|
@ -38,5 +38,9 @@ in {
|
||||||
extraGroups = [ "networkmanager" "wheel" ];
|
extraGroups = [ "networkmanager" "wheel" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
hardware.opentabletdriver = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
system.stateVersion = conf.stateVersion;
|
system.stateVersion = conf.stateVersion;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue