upgrade to NixOs 25.05
This commit is contained in:
@ -66,6 +66,7 @@ in {
|
||||
texliveMedium
|
||||
biber
|
||||
gcc
|
||||
just-lsp
|
||||
];
|
||||
};
|
||||
|
||||
|
@ -44,7 +44,7 @@ in {
|
||||
};
|
||||
syntaxHighlighting.enable = true;
|
||||
syntaxHighlighting.highlighters = ["main" "brackets"];
|
||||
initExtra = ''
|
||||
initContent = ''
|
||||
# auto completion
|
||||
bindkey '^I' complete-word
|
||||
bindkey '^[[Z' autosuggest-accept
|
||||
|
@ -69,7 +69,8 @@ in {
|
||||
|
||||
# fonts
|
||||
noto-fonts
|
||||
nerdfonts
|
||||
nerd-fonts.fira-code
|
||||
nerd-fonts.fira-mono
|
||||
fira
|
||||
];
|
||||
|
||||
|
@ -12,18 +12,20 @@ in {
|
||||
config = lib.mkIf cfg.enable {
|
||||
services.mako = {
|
||||
enable = true;
|
||||
actions = true;
|
||||
anchor = "top-right";
|
||||
settings = {
|
||||
actions = true;
|
||||
anchor = "top-right";
|
||||
|
||||
borderRadius = 10;
|
||||
borderSize = 2;
|
||||
height = 100;
|
||||
width = 400;
|
||||
border-radius = 10;
|
||||
border-size = 2;
|
||||
height = 100;
|
||||
width = 400;
|
||||
|
||||
defaultTimeout = 10000; # ms
|
||||
font = "FiraCode Nerd Font 11";
|
||||
icons = true;
|
||||
markup = true;
|
||||
default-timeout = 10000; # ms
|
||||
font = "FiraCode Nerd Font 11";
|
||||
icons = true;
|
||||
markup = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
@ -116,15 +116,14 @@ in {
|
||||
};
|
||||
xsession.enable = true;
|
||||
|
||||
services.mako = {
|
||||
backgroundColor = "#313131";
|
||||
borderColor = "#00FFEE";
|
||||
progressColor = "#338833";
|
||||
textColor = "#e0e0e0";
|
||||
extraConfig = ''
|
||||
[urgency=low]
|
||||
border-color=#008877
|
||||
'';
|
||||
services.mako.settings = {
|
||||
background-color = "#313131";
|
||||
border-color = "#00FFEE";
|
||||
progress-color = "#338833";
|
||||
text-color = "#e0e0e0";
|
||||
"urgency=low" = {
|
||||
border-color = "#008877";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user