7 lines
204 B
Nix
7 lines
204 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;
|
|
}
|