2022-06-26 12:42:49 +00:00
|
|
|
{ config, lib, pkgs, user, ... }:
|
|
|
|
|
|
|
|
{
|
2022-06-27 05:50:07 +00:00
|
|
|
imports = [
|
|
|
|
./i3status-rust.nix
|
|
|
|
];
|
|
|
|
|
2022-06-28 15:05:14 +00:00
|
|
|
home.file.workspaces = {
|
|
|
|
source = ./workspaces;
|
|
|
|
target = ".config/i3/workspaces";
|
|
|
|
recursive = true;
|
|
|
|
};
|
|
|
|
|
2022-06-26 12:42:49 +00:00
|
|
|
xsession.windowManager.i3 = {
|
|
|
|
enable = true;
|
2022-06-28 15:05:14 +00:00
|
|
|
|
2022-06-26 12:42:49 +00:00
|
|
|
config = {
|
|
|
|
modifier = "Mod4";
|
|
|
|
terminal = "${pkgs.kitty}/bin/kitty";
|
|
|
|
|
|
|
|
fonts = {
|
|
|
|
names = [ "DejaVu Sans Mono" ];
|
|
|
|
size = 12.0;
|
|
|
|
};
|
|
|
|
|
|
|
|
window = {
|
|
|
|
titlebar = false;
|
|
|
|
border = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
floating = {
|
|
|
|
titlebar = false;
|
|
|
|
border = 0;
|
|
|
|
};
|
|
|
|
|
2022-06-27 16:42:10 +00:00
|
|
|
menu = "${pkgs.rofi}/bin/rofi -show drun";
|
|
|
|
|
2022-06-26 12:42:49 +00:00
|
|
|
bars = [{
|
|
|
|
mode = "hide";
|
|
|
|
position = "top";
|
|
|
|
statusCommand = "${pkgs.i3status-rust}/bin/i3status-rs ~/.config/i3status-rust/config-default.toml";
|
|
|
|
|
|
|
|
fonts = {
|
|
|
|
names = [ "DejaVu Sans Mono" ];
|
|
|
|
size = 12.0;
|
|
|
|
};
|
|
|
|
}];
|
2022-06-26 19:13:00 +00:00
|
|
|
|
|
|
|
defaultWorkspace = "workspace number 1";
|
|
|
|
|
|
|
|
startup = [
|
2022-06-28 15:05:14 +00:00
|
|
|
{ command = "i3-msg 'workspace 1; append_layout ~/.config/i3/workspaces/workspace-1.json'"; }
|
|
|
|
{ command = "i3-msg 'workspace 2; append_layout ~/.config/i3/workspaces/workspace-2.json'"; }
|
|
|
|
{ command = "i3-msg 'workspace 4; append_layout ~/.config/i3/workspaces/workspace-4.json'"; }
|
|
|
|
{ command = "i3-msg 'workspace 5; append_layout ~/.config/i3/workspaces/workspace-5.json'"; }
|
|
|
|
{ command = "kitty"; notification = false; }
|
|
|
|
{ command = "firefox"; notification = false; }
|
2022-06-29 06:07:08 +00:00
|
|
|
{ command = "element-desktop"; notification = false; }
|
2022-06-28 15:05:14 +00:00
|
|
|
{ command = "keepassxc"; notification = false; }
|
|
|
|
{ command = "nextcloud"; notification = false; }
|
|
|
|
{ command = "signal-desktop"; notification = false; }
|
|
|
|
{ command = "slack"; notification = false; }
|
|
|
|
{ command = "telegram-desktop"; notification = false; }
|
|
|
|
{ command = "thunderbird"; notification = false; }
|
|
|
|
# { command = "zoom"; notification = false; }
|
2022-06-26 19:13:00 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
assigns = {
|
2022-06-28 15:05:14 +00:00
|
|
|
"6" = [{ class = "^zoom$"; }];
|
2022-06-26 19:13:00 +00:00
|
|
|
};
|
2022-06-26 12:42:49 +00:00
|
|
|
};
|
|
|
|
};
|
2022-06-26 17:02:56 +00:00
|
|
|
|
|
|
|
services.screen-locker = {
|
|
|
|
enable = true;
|
|
|
|
lockCmd = "${pkgs.i3lock}/bin/i3lock -n -c 000000";
|
|
|
|
};
|
2022-06-26 12:42:49 +00:00
|
|
|
}
|