stuff
This commit is contained in:
@ -172,7 +172,7 @@
|
|||||||
imports = let ifExists = p: if builtins.pathExists p then p else {}; in [
|
imports = let ifExists = p: if builtins.pathExists p then p else {}; in [
|
||||||
./base.nix
|
./base.nix
|
||||||
"${self}/hosts/nixos/${hostname}/configuration.nix"
|
"${self}/hosts/nixos/${hostname}/configuration.nix"
|
||||||
inputs.home-manager.nixosModule
|
inputs.home-manager.nixosModules.default
|
||||||
#inputs.nix-index-database.nixosModules.nix-index # TODO: fix?
|
#inputs.nix-index-database.nixosModules.nix-index # TODO: fix?
|
||||||
] ++ modules ++ extra-modules;
|
] ++ modules ++ extra-modules;
|
||||||
#++ inputs.flake-programs-sqlite.nixosModules.programs-sqlite; # TODO: make work
|
#++ inputs.flake-programs-sqlite.nixosModules.programs-sqlite; # TODO: make work
|
||||||
|
@ -141,7 +141,7 @@ with lib.hm.gvariant;
|
|||||||
|
|
||||||
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom12" = {
|
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom12" = {
|
||||||
binding = "";
|
binding = "";
|
||||||
command = "sh -c \"ghostty -e python3 -i $HOME/.local/opt/sympy-interactive-imports.py\"";
|
command = "ghostty -e \"python3 -i $HOME/.local/opt/sympy-interactive-imports.py\"";
|
||||||
name = "Open SymPy terminal";
|
name = "Open SymPy terminal";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -171,7 +171,7 @@ with lib.hm.gvariant;
|
|||||||
|
|
||||||
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom5" = {
|
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom5" = {
|
||||||
binding = "<Primary><Alt>space";
|
binding = "<Primary><Alt>space";
|
||||||
command = "sh -c \"ghostty -e `command -v ptpython || echo python3` -i $HOME/.local/opt/python-interactive-imports.py\"";
|
command = "ghostty -e \"`command -v ptpython || echo python3` -i $HOME/.local/opt/python-interactive-imports.py\"";
|
||||||
name = "Open Python Terminal";
|
name = "Open Python Terminal";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -32,7 +32,9 @@ in
|
|||||||
# ~/.inputrc
|
# ~/.inputrc
|
||||||
programs.readline = {
|
programs.readline = {
|
||||||
enable = true;
|
enable = true;
|
||||||
#bindings = { };
|
bindings = {
|
||||||
|
"\\e[Z" = "menu-complete"; # shift+tab
|
||||||
|
};
|
||||||
variables = {
|
variables = {
|
||||||
# https://man.archlinux.org/man/core/readline/readline.3.en#Variables
|
# https://man.archlinux.org/man/core/readline/readline.3.en#Variables
|
||||||
completion-ignore-case = true;
|
completion-ignore-case = true;
|
||||||
|
Reference in New Issue
Block a user