chore(grfn/home): Rename deprecated options
Change-Id: Ic209f46858d9834298d151d7c6b884f6d6f23dbe Reviewed-on: https://cl.tvl.fyi/c/depot/+/5158 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
This commit is contained in:
parent
6e3432383f
commit
a0ce1f6a9a
2 changed files with 20 additions and 12 deletions
|
@ -102,7 +102,7 @@ in
|
||||||
# Notes
|
# Notes
|
||||||
services.syncthing = {
|
services.syncthing = {
|
||||||
enable = true;
|
enable = true;
|
||||||
tray = true;
|
tray.enable = true;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
|
@ -39,15 +39,23 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
config =
|
config =
|
||||||
let decorationFont = "MesloLGSDZ ${toString config.system.machine.i3FontSize}"; in
|
let
|
||||||
{
|
fontName = "MesloLGSDZ";
|
||||||
home.packages = with pkgs; [
|
fontSize = config.system.machine.i3FontSize;
|
||||||
rofi
|
fonts = {
|
||||||
rofi-pass
|
names = [ fontName ];
|
||||||
python38Packages.py3status
|
size = fontSize * 1.0;
|
||||||
i3lock
|
};
|
||||||
i3status
|
decorationFont = "${fontName} ${toString fontSize}";
|
||||||
dconf # for gtk
|
in
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
rofi
|
||||||
|
rofi-pass
|
||||||
|
python38Packages.py3status
|
||||||
|
i3lock
|
||||||
|
i3status
|
||||||
|
dconf # for gtk
|
||||||
|
|
||||||
# Screenshots
|
# Screenshots
|
||||||
maim
|
maim
|
||||||
|
@ -176,7 +184,7 @@ in
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
|
||||||
fonts = [ decorationFont ];
|
inherit fonts;
|
||||||
|
|
||||||
colors = with solarized; rec {
|
colors = with solarized; rec {
|
||||||
focused = {
|
focused = {
|
||||||
|
@ -296,7 +304,7 @@ in
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
"py3status -c ${i3status-conf}";
|
"py3status -c ${i3status-conf}";
|
||||||
fonts = [ decorationFont ];
|
inherit fonts;
|
||||||
position = "top";
|
position = "top";
|
||||||
colors = with solarized; rec {
|
colors = with solarized; rec {
|
||||||
background = base03;
|
background = base03;
|
||||||
|
|
Loading…
Add table
Reference in a new issue