Configure i3

This commit is contained in:
muon 2024-06-12 13:34:15 +00:00
parent 5f6f020888
commit 58128797de
5 changed files with 88 additions and 13 deletions

View file

@ -6,6 +6,7 @@ in {
./i3.nix
./hyprland.nix
./social.nix
./development.nix
];
mods.hyprland.enable = lib.mkIf cfg.wayland.enable true;

View file

@ -1,9 +1,36 @@
{ pkgs, lib, config, ... }: {
options.mods.i3.enable = lib.mkEnableOption "enables bspwm";
{ pkgs, lib, config, options, ... }: {
options.mods.i3.enable = lib.mkEnableOption "enables i3";
config = lib.mkIf config.mods.i3.enable {
programs.rofi.enable = true;
programs.i3status = {
enable = true;
general.interval = 1;
modules = {
"volume master" = {
position = 1;
settings = {
format = "🔊 %volume";
format_muted = "🔇 %volume";
device = "default";
mixer = "Master";
mixer_idx = 0;
};
};
"tztime local".settings = {
format = "🗓 %Y-%m-%d %H:%M:%S ";
};
ipv6.enable = false;
"wireless _first_".enable = false;
"ethernet _first_".enable = false;
"battery all".enable = false;
"disk /".enable = false;
load.enable = false;
memory.enable = false;
};
};
xsession.windowManager.i3 = {
enable = true;
config = {
@ -11,6 +38,15 @@
terminal = "alacritty";
menu = "rofi -show drun";
window = {
titlebar = false;
hideEdgeBorders = "smart";
};
defaultWorkspace = "workspace number 1";
workspaceAutoBackAndForth = true;
focus.wrapping = "yes";
keybindings = let
modifier = config.xsession.windowManager.i3.config.modifier;
in lib.mkOptionDefault {
@ -19,6 +55,25 @@
"${modifier}+k" = "focus up";
"${modifier}+l" = "focus right";
};
bars = let
stylix_bar = {
mode = "dock";
hiddenState = "hide";
position = "bottom";
statusCommand = "${lib.getExe pkgs.i3status}";
command = "${pkgs.i3}/bin/i3bar";
workspaceButtons = true;
workspaceNumbers = true;
trayOutput = "primary";
} // config.lib.stylix.i3.bar;
in [
stylix_bar
];
# bars = [
# options.xsession.windowManager.i3.config.default
# config.lib.stylix.i3.bar
# ];
};
};
};

View file

@ -2,6 +2,8 @@
options.mods.terminal.tools.enable = lib.mkEnableOption "enables cli tools";
config = lib.mkIf config.mods.terminal.tools.enable {
programs.zellij.enable = true;
home.packages = with pkgs; [
# libraries
glow
@ -14,7 +16,6 @@
# programs
bottom
zellij
fend
];
};