Compare commits
4 commits
e2fb7b4df4
...
d21c7143ee
Author | SHA1 | Date | |
---|---|---|---|
Dmitry Voronin | d21c7143ee | ||
Dmitry Voronin | c8dbb55caa | ||
Dmitry Voronin | 48246191f8 | ||
Dmitry Voronin | ef467986ad |
|
@ -4,7 +4,7 @@
|
||||||
"jetbrains-*" = {
|
"jetbrains-*" = {
|
||||||
"alt./" = "C-/"; # Toggle comment.
|
"alt./" = "C-/"; # Toggle comment.
|
||||||
"alt.." = "C-f8"; # Toggle line breakpoint.
|
"alt.." = "C-f8"; # Toggle line breakpoint.
|
||||||
"alt.=" = "C-A-l"; # Reformat.
|
"alt.equal" = "C-A-l"; # Reformat.
|
||||||
"alt.c" = "S-escape"; # Close panel.
|
"alt.c" = "S-escape"; # Close panel.
|
||||||
"alt.capslock" = "C-A-S-insert"; # New scratch file.
|
"alt.capslock" = "C-A-S-insert"; # New scratch file.
|
||||||
"alt.q" = "A-left"; # Prev tab.
|
"alt.q" = "A-left"; # Prev tab.
|
||||||
|
|
|
@ -49,7 +49,6 @@
|
||||||
# JamesDsp.
|
# JamesDsp.
|
||||||
for_window [title="JamesDSP for Linux"] {
|
for_window [title="JamesDSP for Linux"] {
|
||||||
move scratchpad
|
move scratchpad
|
||||||
scratchpad show
|
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,5 +47,18 @@
|
||||||
|
|
||||||
SHELL_NAME="''${pkg}" NIXPKGS_ALLOW_UNFREE=1 nix shell --impure github:NixOS/nixpkgs/''${rev}#''${pkg} -c ''${cmd}
|
SHELL_NAME="''${pkg}" NIXPKGS_ALLOW_UNFREE=1 nix shell --impure github:NixOS/nixpkgs/''${rev}#''${pkg} -c ''${cmd}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Prefetch to nix store.
|
||||||
|
# Usage: prefetch <URL>
|
||||||
|
function prefetch() {
|
||||||
|
local url="''${1}"
|
||||||
|
|
||||||
|
if [[ "''${url}" = "" ]]; then
|
||||||
|
help prefetch
|
||||||
|
return 2
|
||||||
|
fi
|
||||||
|
|
||||||
|
nix hash to-sri --type sha256 $(nix-prefetch-url "''${url}")
|
||||||
|
}
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
module = {
|
module = {
|
||||||
# ISSUE: hdd.enable = true;
|
# ISSUE: hdd.enable = true;
|
||||||
change.enable = true;
|
change.enable = true;
|
||||||
chat.enable = true;
|
|
||||||
cloud.enable = true;
|
cloud.enable = true;
|
||||||
ddns.enable = true;
|
ddns.enable = true;
|
||||||
dns.enable = true;
|
dns.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue