factor out lxterminal
This commit is contained in:
parent
34dbc84cce
commit
23d37d413b
|
@ -2,6 +2,10 @@
|
|||
|
||||
{
|
||||
|
||||
imports = [
|
||||
./lxterminal
|
||||
];
|
||||
|
||||
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
||||
"discord"
|
||||
"telegra-desktop"
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
home.file.".local/opt/open-microsoft-url-files.py".source = ../../files/opt/open-microsoft-url-files.py;
|
||||
home.file.".local/opt/python-interactive-imports.py".source = ../../files/opt/python-interactive-imports.py;
|
||||
home.file.".local/opt/sympy-interactive-imports.py".source = ../../files/opt/sympy-interactive-imports.py;
|
||||
home.file.".config/lxterminal/lxterminal.conf".source = ../../files/lxterminal.conf;
|
||||
|
||||
imports = [
|
||||
./dconf-gnome-bindings.nix
|
||||
|
@ -13,7 +12,6 @@
|
|||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
lxterminal
|
||||
gnome.gnome-tweaks
|
||||
pkgs.vimix-gtk-themes # shell theme
|
||||
gnomeExtensions.big-avatar
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [ lxterminal ];
|
||||
home.file.".config/lxterminal/lxterminal.conf".source = ./lxterminal.conf;
|
||||
}
|
Loading…
Reference in New Issue