config/users/pbsds/home/profiles/desktop/lxterminal/default.nix

15 lines
338 B
Nix
Raw Normal View History

2023-10-14 18:32:30 +02:00
{ pkgs, ... }:
{
home.packages = with pkgs; [ lxterminal ];
home.file.".config/lxterminal/lxterminal.conf".source = ./lxterminal.conf;
2024-10-07 13:22:15 +02:00
home.file.".config/lxterminal/lxterminal.conf".force = true;
2025-01-09 00:50:07 +01:00
/*
dconf.settings."org/gnome/desktop/default-applications/terminal" = {
exec = "lxterminal";
exec-arg = "-e";
};
*/
2023-10-14 18:32:30 +02:00
}