15 lines
338 B
Nix
15 lines
338 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [ lxterminal ];
|
|
home.file.".config/lxterminal/lxterminal.conf".source = ./lxterminal.conf;
|
|
home.file.".config/lxterminal/lxterminal.conf".force = true;
|
|
|
|
/*
|
|
dconf.settings."org/gnome/desktop/default-applications/terminal" = {
|
|
exec = "lxterminal";
|
|
exec-arg = "-e";
|
|
};
|
|
*/
|
|
|
|
}
|