[clipse] move config to nix

This commit is contained in:
Simon Cornet 2024-03-24 20:30:47 +01:00
parent c51482b0f8
commit f16c6d11bd
3 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ config, pkgs, ... }:
{
# configure clipse
home.file.".config/clipse/custom_theme.json".text = ''
{
"useCustomTheme": true,
"DimmedDesc": "#ffffff",
"DimmedTitle": "#ffffff",
"FilteredMatch": "#528bff",
"NormalDesc": "#ffffff",
"NormalTitle": "#ffffff",
"SelectedDesc": "#3465a4",
"SelectedTitle": "#528bff",
"SelectedBorder": "#528bff",
"SelectedDescBorder": "#528bff",
"TitleFore": "#ffffff",
"Titleback": "#528bff",
"StatusMsg": "#ffffff"
}
'';
}

View File

@ -0,0 +1 @@
{ ... }: { imports = [ ./clipse.nix ]; }

View File

@ -4,6 +4,7 @@
# imports
imports = [
./alacritty
./clipse
./git
./mpv
./ssh