nixos-config/modules/programs/xournalpp/default.nix

11 lines
268 B
Nix
Raw Normal View History

2021-09-03 20:41:43 +00:00
{ config, pkgs, ... }:
{
2021-11-01 12:49:21 +00:00
environment.systemPackages = with pkgs; [ xournalpp-git ];
2021-09-03 20:41:43 +00:00
2021-11-01 12:49:21 +00:00
#home-manager.users."${config.system.singleUser}".home.file = {
# ".xournalpp/settings.xml".source = ./settings.xml;
# ".xournalpp/toolbar.ini".source = ./toolbar.ini;
#};
2021-09-03 20:41:43 +00:00
}