Merge branch 'master' into fixing

This commit is contained in:
Filippo Berto 2021-05-22 18:11:51 +02:00
commit 492ae9d92a
11 changed files with 179 additions and 7 deletions

View file

@ -1,15 +1,24 @@
{
programs.rofi = {
enable = true;
enable = true;
# extraConfig = {
# modi = "drun,run,ssh,window";
# theme = "nord";
# };
extraConfig = "
modi = drun,run,ssh,window
theme = nord
";
# extraConfig = builtins.concatStringsSep "\n" [
# "modi = drun,run,ssh,window"
# "theme = nord"
# ];
};
xdg.configFile."rofi/config.rasi".text = ''
configuration {
location: 0;
yoffset: 0;
xoffset: 0;
modi: "drun,run,ssh,window";
theme: "nord";
}
'';
xdg.configFile."rofi/nord.rasi".source = ../configs/rofi/nord.rasi;
}