factor out lxterminal

This commit is contained in:
Peder Bergebakken Sundt 2023-10-14 18:32:30 +02:00
parent 34dbc84cce
commit 23d37d413b
4 changed files with 9 additions and 2 deletions

View File

@ -2,6 +2,10 @@
{
imports = [
./lxterminal
];
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"discord"
"telegra-desktop"

View File

@ -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

View File

@ -0,0 +1,5 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [ lxterminal ];
home.file.".config/lxterminal/lxterminal.conf".source = ./lxterminal.conf;
}