2023-07-03 16:09:48 +01:00
|
|
|
{pkgs, ...}: {
|
2023-04-04 14:20:49 +01:00
|
|
|
imports = [
|
2023-04-11 13:01:23 +01:00
|
|
|
./gtk.nix
|
2023-04-04 14:20:49 +01:00
|
|
|
./picom.nix
|
|
|
|
./rofi.nix
|
2023-04-05 22:30:11 +01:00
|
|
|
./polybar.nix
|
2023-04-04 14:20:49 +01:00
|
|
|
];
|
2023-07-03 14:26:14 +01:00
|
|
|
xfconf.settings.xsettings."Gtk/MonospaceFontName" = "FiraCode Nerd Font 12";
|
2023-07-03 16:09:48 +01:00
|
|
|
xdg.configFile."xfce4/terminal/colorschemes/tokyonight_night".source =
|
|
|
|
pkgs.fetchFromGitHub {
|
|
|
|
owner = "folke";
|
|
|
|
repo = "tokyonight.nvim";
|
|
|
|
rev = "cd5156f4b4a6c4c337a46deb0c0bd37319920833";
|
|
|
|
sha256 = "/ht+ixR1eyYR0la00Xq5q1gCsgb5Ly90JghERwbaDPQ=";
|
|
|
|
}
|
|
|
|
+ "/extras/xfceterm/tokyonight_night.theme";
|
|
|
|
xdg.configFile."xfce4/terminal/terminalrc".text = ''
|
|
|
|
[Configuration]
|
|
|
|
BackgroundMode=TERMINAL_BACKGROUND_TRANSPARENT
|
|
|
|
BackgroundDarkness=0.8
|
|
|
|
ColorForeground=#c0caf5
|
|
|
|
ColorBackground=#1a1b26
|
|
|
|
ColorSelection=#c0caf5
|
|
|
|
ColorSelectionBackground=#283457
|
|
|
|
ColorPalette=#15161e;#f7768e;#9ece6a;#e0af68;#7aa2f7;#bb9af7;#7dcfff;#a9b1d6;#414868;#f7768e;#9ece6a;#e0af68;#7aa2f7;#bb9af7;#7dcfff;#c0caf5
|
|
|
|
'';
|
2023-04-04 14:20:49 +01:00
|
|
|
}
|