Compare commits

..

4 commits

5 changed files with 52 additions and 36 deletions

24
flake.lock generated
View file

@ -387,11 +387,11 @@
}, },
"mnw": { "mnw": {
"locked": { "locked": {
"lastModified": 1747615842, "lastModified": 1748203683,
"narHash": "sha256-pAh9ndf+GdoCfsWaNATFDjgiax9fOYdWzguYV1H/W0E=", "narHash": "sha256-zd5GFPg/lVbIILs0ze0bLUsFS72TD/N0Vq5IEGmSG7Y=",
"owner": "gerg-l", "owner": "gerg-l",
"repo": "mnw", "repo": "mnw",
"rev": "b62120999410eb4a4e27359a3e1c0a22fcc0baff", "rev": "0cb0df3a6f26cbb42f3e096ec65bc7263aab9757",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -411,11 +411,11 @@
"treefmt-nix": "treefmt-nix" "treefmt-nix": "treefmt-nix"
}, },
"locked": { "locked": {
"lastModified": 1748070814, "lastModified": 1748176456,
"narHash": "sha256-UENoloiY25w0GmPsni8aswhks13qD1sT7XPQgmBd4tU=", "narHash": "sha256-9KctKybf6ypTTeqepgWPwCLU2V2tVrLXL8OtHzfKEhY=",
"owner": "nix-community", "owner": "nix-community",
"repo": "neovim-nightly-overlay", "repo": "neovim-nightly-overlay",
"rev": "1654f815b79267a32c0eb9feb5962089d855d287", "rev": "f788fa289c6e2769339eb519ce7e3732f24a8096",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -427,11 +427,11 @@
"neovim-src": { "neovim-src": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1748041342, "lastModified": 1748117132,
"narHash": "sha256-gYkZbws7QEZ6o5Kh8IPotFAk1thbzzm3C8+vs/M32E4=", "narHash": "sha256-RscRZfMlnsCYzLbgskVPc0AOqtcdyg77htxaVT0xFpc=",
"owner": "neovim", "owner": "neovim",
"repo": "neovim", "repo": "neovim",
"rev": "9784bc134624ff6dcf2e59e3c3998e206d2adad7", "rev": "06043af27d9c9258eeebf16e4691dcb92f9b857d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -631,11 +631,11 @@
"systems": "systems" "systems": "systems"
}, },
"locked": { "locked": {
"lastModified": 1748138789, "lastModified": 1748217776,
"narHash": "sha256-FWrmnGlRlQy1MYkGzhzQ2eaW+unNU0Te+ns14ajtQ5E=", "narHash": "sha256-H5yi/nBlTL8TZ3GKvjJhJReEMc3z1xLBocVvewaJ5SY=",
"owner": "Gerg-L", "owner": "Gerg-L",
"repo": "nvim-flake", "repo": "nvim-flake",
"rev": "3071f5d63c727a218e459ad10f2cc01404425636", "rev": "19ee0aebca7d0d675539efde545dc49cee7e3d20",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -41,7 +41,6 @@
vesktop vesktop
gh gh
nixfmt-rfc-style nixfmt-rfc-style
zellij
tidal-hifi tidal-hifi
hyperfine hyperfine
@ -131,29 +130,6 @@
silent = true; silent = true;
}; };
zoxide.enable = true;
zsh = {
shellAliases.cd = "z";
interactiveShellInit =
let
monitorScript = pkgs.replaceVarsWith {
src = ./monitor.ps;
replacements = builtins.mapAttrs (_: lib.getExe) {
inherit (pkgs) perl xdotool;
};
isExecutable = true;
};
in
''
if [[ -z "$ZELLIJ" ]]; then
MONITOR="$(${monitorScript} || true)"
zellij attach -c "''${MONITOR:+"$MONITOR@"}$USER"
exit
fi
'';
};
nix-index = { nix-index = {
enable = true; enable = true;
package = nix-index-database.packages.nix-index-with-db; package = nix-index-database.packages.nix-index-with-db;

View file

@ -32,10 +32,12 @@
lx = "eza -lbhHigUmuSa@ --time-style=long-iso --git --color-scale"; lx = "eza -lbhHigUmuSa@ --time-style=long-iso --git --color-scale";
lS = "eza -1"; lS = "eza -1";
lt = "eza --tree --level=2"; lt = "eza --tree --level=2";
cd = "z";
}; };
interactiveShellInit = "fetch-rs"; interactiveShellInit = "fetch-rs";
}; };
programs.zoxide.enable = true;
programs.starship = { programs.starship = {
enable = true; enable = true;
settings = { settings = {

View file

@ -0,0 +1,38 @@
{
lib,
pkgs,
config,
}:
{
options.local.zellij = lib.mkEnableOption "zellij" // {
default = true;
};
config = lib.mkIf config.local.zellij {
local.packages = {
inherit (pkgs) zellij;
};
programs.zsh.interactiveShellInit =
let
monitorScript = pkgs.replaceVarsWith {
src = ./monitor.ps;
replacements = builtins.mapAttrs (_: lib.getExe) {
inherit (pkgs) perl xdotool;
};
isExecutable = true;
};
in
''
if [[ -z "$ZELLIJ" ]]; then
if [[ -n "$SSH_TTY" ]]; then
zellij attach -c "SSH@$USER"
else
MONITOR="$(${monitorScript} || true)"
zellij attach -c "''${MONITOR:+"$MONITOR@"}$USER"
fi
fi
'';
};
}