Updated zellij and docker configuration

This commit is contained in:
xeovalyte 2025-02-06 11:16:24 +01:00
parent 3a61bc6b26
commit f3362df5aa
Signed by: xeovalyte
SSH Key Fingerprint: SHA256:GWI1hq+MNKR2UOcvk7n9tekASXT8vyazK7vDF9Xyciw
2 changed files with 4 additions and 40 deletions

View File

@ -22,7 +22,7 @@ in {
home.file.zellij = {
target = ".config/zellij/config.kdl";
text = ''
pane_frames false
pane_frames true
keybinds {
normal {
bind "Ctrl e" { ToggleFloatingPanes; SwitchToMode "normal"; }
@ -40,7 +40,7 @@ in {
target = ".config/zellij/layouts/default.kdl";
text = ''
layout {
pane
pane borderless=true {}
floating_panes {
pane {
width "80%"
@ -49,40 +49,8 @@ in {
y "10%"
}
}
}
'';
};
home.file.zellij-layout-dioxus = {
target = ".config/zellij/layouts/dioxus.kdl";
text = ''
layout {
tab {
pane {
command "hx"
args "."
focus true
}
floating_panes {
pane {
width "80%"
height "80%"
x "10%"
y "10%"
}
}
}
tab {
pane {
command "dx"
args "serve"
}
}
tab {
pane {
command "devenv"
args "up"
}
pane size=1 borderless=true {
plugin location="zellij:tab-bar"
}
}
'';

View File

@ -17,10 +17,6 @@ in {
config = mkIf cfg.enable {
virtualisation.docker = {
enable = true;
rootless = {
enable = true;
setSocketVariable = true;
};
};
users.users.xeovalyte.extraGroups = [ "docker" ];