2020-02-17 17:00:59 +04:00
|
|
|
{ pkgs, config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let scripts = import ./scripts pkgs config;
|
|
|
|
in {
|
2021-01-11 18:09:34 +04:00
|
|
|
secrets.wage = {
|
|
|
|
owner = "balsoft:users";
|
|
|
|
services = [ ];
|
|
|
|
};
|
|
|
|
|
2021-01-26 23:19:54 +04:00
|
|
|
secrets.email = {
|
|
|
|
owner = "balsoft:users";
|
|
|
|
services = [ ];
|
|
|
|
encrypted = "/home/balsoft/.password-store/email/balsoft@balsoft.ru.gpg";
|
|
|
|
};
|
|
|
|
|
2020-08-06 12:31:36 +04:00
|
|
|
home-manager.users.balsoft = {
|
|
|
|
wayland.windowManager.sway.config.bars = [{
|
|
|
|
id = "default";
|
2020-10-02 01:48:27 +04:00
|
|
|
trayOutput = "primary";
|
2020-08-06 12:31:36 +04:00
|
|
|
command = "true";
|
|
|
|
colors = let
|
|
|
|
thm = config.themes.colors;
|
|
|
|
default = {
|
|
|
|
background = thm.bg;
|
|
|
|
border = thm.bg;
|
|
|
|
};
|
|
|
|
in {
|
2020-06-13 00:12:36 +04:00
|
|
|
background = thm.bg;
|
2020-08-06 12:31:36 +04:00
|
|
|
statusline = thm.fg;
|
|
|
|
separator = thm.alt;
|
|
|
|
focusedWorkspace = default // { text = thm.red; };
|
|
|
|
activeWorkspace = default // { text = thm.green; };
|
|
|
|
inactiveWorkspace = default // { text = thm.fg; };
|
|
|
|
urgentWorkspace = default // { text = thm.orange; };
|
|
|
|
bindingMode = default // { text = thm.yellow; };
|
2020-06-13 00:12:36 +04:00
|
|
|
};
|
2020-08-06 12:31:36 +04:00
|
|
|
statusCommand = "${pkgs.i3blocks}/bin/i3blocks";
|
2021-05-10 04:04:18 +04:00
|
|
|
fonts = {
|
|
|
|
names = [ "IBM Plex Sans" "Material Icons" "Roboto Mono" ];
|
|
|
|
style = "Regular";
|
|
|
|
size = 12.0;
|
|
|
|
};
|
2020-08-06 12:31:36 +04:00
|
|
|
mode = "hide";
|
|
|
|
position = "bottom";
|
2020-10-02 01:48:27 +04:00
|
|
|
workspaceNumbers = false;
|
2020-08-06 12:31:36 +04:00
|
|
|
}];
|
|
|
|
xdg.configFile."i3blocks/config".text = let
|
|
|
|
scr = x: {
|
|
|
|
name = x;
|
|
|
|
command = scripts.${x};
|
|
|
|
};
|
|
|
|
scrint = x: interval: (scr x) // { inherit interval; };
|
|
|
|
in ''
|
|
|
|
interval=60
|
|
|
|
markup=pango
|
2021-05-25 15:04:21 +04:00
|
|
|
'' + pkgs.my-lib.genIniOrdered ([ (scr "email") ]
|
2020-12-25 00:33:23 +04:00
|
|
|
++ [ (scrint "weather" 600) (scr "emacs") (scr "nixos") ]
|
2021-05-10 04:04:18 +04:00
|
|
|
++ [ (scrint "youtrack-wage" 3600) (scrint "music" 3) (scrint "sound" 1) ]
|
|
|
|
++ [
|
2020-10-02 01:48:27 +04:00
|
|
|
(scrint "cpu" 5)
|
|
|
|
(scrint "freq" 10)
|
|
|
|
(scr "temperature")
|
|
|
|
(scrint "free" 10)
|
|
|
|
] ++ optionals config.deviceSpecific.isLaptop [
|
|
|
|
(scr "battery")
|
|
|
|
(scrint "brightness" 5)
|
|
|
|
] ++ optional (config.deviceSpecific.devInfo ? bigScreen)
|
|
|
|
(scrint "network" 1) ++ [
|
|
|
|
(scrint "bluetooth" 3)
|
|
|
|
(scrint "connections" 3)
|
|
|
|
(scr "df")
|
|
|
|
(scr "date")
|
|
|
|
(scrint "time" 1)
|
|
|
|
]);
|
2020-08-06 12:31:36 +04:00
|
|
|
systemd.user.services.swaybar = {
|
2021-01-26 23:19:54 +04:00
|
|
|
Unit = {
|
|
|
|
Description = "Start default bar";
|
|
|
|
X-RestartIfChanged = true;
|
|
|
|
};
|
2020-08-06 12:31:36 +04:00
|
|
|
|
|
|
|
Install.WantedBy = [ "sway-session.target" ];
|
|
|
|
|
2020-10-02 01:48:27 +04:00
|
|
|
Service = { ExecStart = "${pkgs.sway}/bin/swaybar -b default"; };
|
2020-08-06 12:31:36 +04:00
|
|
|
};
|
|
|
|
};
|
2020-02-17 17:00:59 +04:00
|
|
|
}
|