This commit is contained in:
m3tam3re
2024-10-10 14:52:28 +02:00
parent 6139657197
commit 6c720bdac6
5 changed files with 80 additions and 3 deletions

View File

@ -1,4 +1,11 @@
{ config, lib, outputs, pkgs, ... }: {
{
config,
lib,
outputs,
pkgs,
...
}: {
imports = builtins.attrValues outputs.homeManagerModules;
nixpkgs = {
# You can add overlays here
overlays = [
@ -29,7 +36,7 @@
nix = {
package = lib.mkDefault pkgs.nix;
settings = {
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
experimental-features = ["nix-command" "flakes" "repl-flake"];
warn-dirty = false;
};
};

View File

@ -26,7 +26,6 @@
home.packages = with pkgs; [
kitty
wofi
zellij-ps
# # Adds the 'hello' command to your environment. It prints a friendly
# # "Hello, world!" when run.
# pkgs.hello
@ -81,4 +80,27 @@
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
programs.zellij-ps = {
enable = true;
projectFolders = [
"${config.home.homeDirectory}/.config"
"${config.home.homeDirectory}"
];
layout = ''
layout {
pane size=1 borderless=true {
plugin location="zellij:tab-bar"
}
pane size="70%" command="nvim"
pane split_direction="vertical" {
pane
pane command="unimatrix"
}
pane size=1 borderless=true {
plugin location="zellij:status-bar"
}
}
'';
};
}