Update flake.lock and add floating hotkeys to niri
This commit is contained in:
parent
b0247d330e
commit
84f0222dff
6 changed files with 36 additions and 27 deletions
|
@ -7,6 +7,7 @@
|
|||
./ncmpcpp
|
||||
./neovim
|
||||
./nh
|
||||
./notfound
|
||||
./ranger
|
||||
./spotdl
|
||||
./tmux
|
||||
|
|
4
modules/home/programs/terminal/notfound/default.nix
Normal file
4
modules/home/programs/terminal/notfound/default.nix
Normal file
|
@ -0,0 +1,4 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.command-not-found.enable = true;
|
||||
}
|
|
@ -133,6 +133,10 @@
|
|||
${primeMod}+${secMod}+j { set-window-height "-${resizeAmount}%"; }
|
||||
${primeMod}+${secMod}+k { set-window-height "+${resizeAmount}%"; }
|
||||
${primeMod}+${secMod}+l { set-column-width "+${resizeAmount}%"; }
|
||||
|
||||
// Floating
|
||||
${primeMod}+space { switch-focus-between-floating-and-tiling; }
|
||||
${primeMod}+Shift+space { toggle-window-floating; }
|
||||
|
||||
// There are also commands that consume or expel a single window to the side.
|
||||
${primeMod}+Ctrl+h { consume-or-expel-window-left; }
|
||||
|
|
|
@ -5,8 +5,11 @@
|
|||
stub-ld.enable = false;
|
||||
};
|
||||
|
||||
programs.nano.enable = false;
|
||||
programs.less.lessopen = null;
|
||||
programs = {
|
||||
nano.enable = false;
|
||||
less.lessopen = null;
|
||||
command-not-found.enable = false;
|
||||
};
|
||||
|
||||
services.logrotate.enable = false;
|
||||
}
|
||||
|
|
|
@ -3,10 +3,7 @@
|
|||
imports = [ ./gc ];
|
||||
|
||||
nix.settings = {
|
||||
experimental-features = [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
];
|
||||
experimental-features = [ "nix-command" "flakes" ];
|
||||
auto-optimise-store = true;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue