Compare commits
No commits in common. "79decb1333f02ec20568d8e6611561bdd10ec331" and "1bb6057a3207cbc68da162d8251c8e8a39e7a90c" have entirely different histories.
79decb1333
...
1bb6057a32
|
@ -1,16 +1,8 @@
|
|||
{ pkgs, config, ... }:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs.nodePackages_latest; [
|
||||
nodejs
|
||||
pnpm
|
||||
prettier
|
||||
];
|
||||
|
||||
home.sessionPath = [ "${config.home.homeDirectory}/.local/npm/bin" ];
|
||||
|
||||
home.file.".npmrc".text =
|
||||
# ini
|
||||
''
|
||||
prefix=${config.home.homeDirectory}/.local/npm
|
||||
'';
|
||||
}
|
||||
|
|
|
@ -23,27 +23,6 @@ in
|
|||
programs.zellij.enable = true;
|
||||
programs.zellij.package = unstable.zellij;
|
||||
|
||||
systemd.user = {
|
||||
services.zellij-cleanup = {
|
||||
Service = {
|
||||
Description = "Zellij cleanup killed sessions";
|
||||
ExecStart = "${unstable.zellij}/bin/zellij delete-all-sessions --yes";
|
||||
};
|
||||
};
|
||||
timers.zellij-cleanup = {
|
||||
Unit = {
|
||||
Description = "Zellij cleanup killed sessions";
|
||||
};
|
||||
Timer = {
|
||||
OnCalendar = "*-*-* 4:00:00";
|
||||
Persistent = true;
|
||||
};
|
||||
Install = {
|
||||
WantedBy = [ "timers.target" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# Uses initExtraFirst instead of initExtra
|
||||
# to avoid loading of zsh plugins before zellij loads.
|
||||
#
|
||||
|
|
|
@ -18,7 +18,7 @@ in
|
|||
settings = {
|
||||
monitors = [
|
||||
"desc:${primaryMonitor},3440x1440@165,0x0,1"
|
||||
"desc:${secondaryMonitor},2560x1440@75,3440x0,1"
|
||||
"desc:${secondaryMonitor},2560x1440@75,440x-1440,1"
|
||||
];
|
||||
workspaces = [
|
||||
"1, monitor:desc:${primaryMonitor}, default:true"
|
||||
|
|
Loading…
Reference in a new issue