Updated flake & added development configuration

This commit is contained in:
2024-07-17 10:54:54 +02:00
parent 726b059e5e
commit b2b37b0537
6 changed files with 63 additions and 29 deletions

View File

@@ -1,6 +1,10 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
unstable.marksman
];
programs.helix = {
enable = true;
package = pkgs.unstable.helix;

View File

@@ -18,23 +18,4 @@
enable = true;
enableBashIntegration = true;
};
programs.zellij = {
enable = true;
# enableBashIntegration = true;
};
home.file.zellij = {
target = ".config/zellij/config.kdl";
text = ''
pane_frames false
default_layout "compact"
keybinds {
normal {
bind "Ctrl e" { ToggleFloatingPanes; SwitchToMode "normal"; }
}
}
'';
};
}

View File

@@ -0,0 +1,46 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
unstable.devenv
];
programs.direnv = {
enable = true;
enableBashIntegration = true;
};
programs.zellij = {
enable = true;
# enableBashIntegration = true;
};
home.file.zellij = {
target = ".config/zellij/config.kdl";
text = ''
pane_frames false
keybinds {
normal {
bind "Ctrl e" { ToggleFloatingPanes; SwitchToMode "normal"; }
}
}
'';
};
home.file.zellij-layout-default = {
target = ".config/zellij/layouts/default.kdl";
text = ''
layout {
pane
floating_panes {
pane {
width "80%"
height "80%"
x "10%"
y "10%"
}
}
}
'';
};
}