mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-19 21:30:57 +01:00
gui: Move terminal settings from wm
This commit is contained in:
parent
9cf0a707df
commit
ba3cdcd042
2 changed files with 49 additions and 48 deletions
49
gui/hm.nix
49
gui/hm.nix
|
|
@ -41,6 +41,55 @@
|
|||
waypipe
|
||||
];
|
||||
|
||||
terminal = {
|
||||
enable = true;
|
||||
kind = "foot";
|
||||
|
||||
colors = {
|
||||
background = "1a1b26";
|
||||
foreground = "c0caf5";
|
||||
|
||||
black = {
|
||||
normal = "15161e";
|
||||
bright = "414868";
|
||||
};
|
||||
red = {
|
||||
normal = "f7768e";
|
||||
};
|
||||
green = {
|
||||
normal = "9ece6a";
|
||||
};
|
||||
yellow = {
|
||||
normal = "e0af68";
|
||||
};
|
||||
blue = {
|
||||
normal = "7aa2f7";
|
||||
};
|
||||
magenta = {
|
||||
normal = "bb9af7";
|
||||
};
|
||||
cyan = {
|
||||
normal = "7dcfff";
|
||||
};
|
||||
white = {
|
||||
normal = "a9b1d6";
|
||||
bright = "c0caf5";
|
||||
};
|
||||
|
||||
urls = "73daca";
|
||||
|
||||
selection = {
|
||||
foreground = "c0caf5";
|
||||
background = "33467c";
|
||||
};
|
||||
};
|
||||
font = {
|
||||
family = "Hack Nerd Font Mono";
|
||||
size = lib.mkDefault 10;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
nativeMessagingHosts = [ pkgs.firefoxpwa ];
|
||||
|
|
|
|||
48
wm/hm.nix
48
wm/hm.nix
|
|
@ -58,54 +58,6 @@
|
|||
name = "Adwaita";
|
||||
};
|
||||
|
||||
terminal = {
|
||||
enable = true;
|
||||
kind = "foot";
|
||||
|
||||
colors = {
|
||||
background = "1a1b26";
|
||||
foreground = "c0caf5";
|
||||
|
||||
black = {
|
||||
normal = "15161e";
|
||||
bright = "414868";
|
||||
};
|
||||
red = {
|
||||
normal = "f7768e";
|
||||
};
|
||||
green = {
|
||||
normal = "9ece6a";
|
||||
};
|
||||
yellow = {
|
||||
normal = "e0af68";
|
||||
};
|
||||
blue = {
|
||||
normal = "7aa2f7";
|
||||
};
|
||||
magenta = {
|
||||
normal = "bb9af7";
|
||||
};
|
||||
cyan = {
|
||||
normal = "7dcfff";
|
||||
};
|
||||
white = {
|
||||
normal = "a9b1d6";
|
||||
bright = "c0caf5";
|
||||
};
|
||||
|
||||
urls = "73daca";
|
||||
|
||||
selection = {
|
||||
foreground = "c0caf5";
|
||||
background = "33467c";
|
||||
};
|
||||
};
|
||||
font = {
|
||||
family = "Hack Nerd Font Mono";
|
||||
size = lib.mkDefault 10;
|
||||
};
|
||||
};
|
||||
|
||||
programs.foot.settings.colors."16" = "ff9e64";
|
||||
programs.foot.settings.colors."17" = "db4b4b";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue