remove-gpg-key #16

Merged
pleshevskiy merged 8 commits from remove-gpg-key into main 2024-02-28 17:28:03 +03:00
26 changed files with 19 additions and 20 deletions

Binary file not shown.

View file

@ -388,11 +388,11 @@
"theme": "theme" "theme": "theme"
}, },
"locked": { "locked": {
"lastModified": 1701345648, "lastModified": 1709128630,
"narHash": "sha256-Ta/5S6suVBUsgxY4hRWuQCYkOWi0V4bquVsKHkMQn1I=", "narHash": "sha256-Lfgfy/EWEmO9X1nkR8gG51FmLVTPh9M9IDCpviyINQY=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "542364e035e3c6fd859df3b527ecbfaf24f0c29d", "rev": "d280679b1498f9082ba12b2c65adbf16ea23c557",
"revCount": 112, "revCount": 114,
"type": "git", "type": "git",
"url": "https://git.pleshevski.ru/mynix/neovim" "url": "https://git.pleshevski.ru/mynix/neovim"
}, },
@ -443,11 +443,11 @@
}, },
"nix2lua": { "nix2lua": {
"locked": { "locked": {
"lastModified": 1669103494, "lastModified": 1709128456,
"narHash": "sha256-jEu9VyOfTMbSITGiG329vEC6K7ZNppfhd0LojxMhzK8=", "narHash": "sha256-tRduS+XFI6VceWPQzjkuvlyn/Oe5NsQUS/wyEC69dvk=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "32b5ab313597df18a81a85af67c5e1380fd4f688", "rev": "f152767145e61fea96eddb1b550ab3f25701e0ad",
"revCount": 13, "revCount": 18,
"type": "git", "type": "git",
"url": "https://git.pleshevski.ru/mynix/nix2lua" "url": "https://git.pleshevski.ru/mynix/nix2lua"
}, },

View file

@ -30,7 +30,10 @@ let
extensions.live_grep_args = { extensions.live_grep_args = {
auto_quoting = true; auto_quoting = true;
mappings.i = { mappings.i = {
"<C-K>" = mkLuaRaw "require('telescope-live-grep-args.actions').quote_prompt()"; "<C-K>" = join "." [
(mkCall "require" [ "telescope-live-grep-args.actions" ])
(mkCall "quote_prompt" [ ])
];
}; };
}; };
}; };
@ -54,7 +57,7 @@ let
}; };
}; };
denols = { denols = {
root_dir = mkLuaRaw "root_pattern(\"deno.json\", \"deno.jsonc\")"; root_dir = mkCall "root_pattern" [ "deno.json" "deno.jsonc" ];
}; };
rust_analyzer = { rust_analyzer = {
settings.rust-analyzer = { settings.rust-analyzer = {

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -2,7 +2,7 @@
Get available disk size Get available disk size
``` ```sh
fdisk -l fdisk -l
``` ```

View file

@ -211,14 +211,14 @@ do
done done
cd "${CURRENT_DIR}" cd "${CURRENT_DIR}"
for encrypted_file in $(awk '{print $2}' ${TMPDIR}/${BASENAME}/${TMPFILE}); do while read encrypted_file; do
rsync -rp -R "${encrypted_file}" "${TMPDIR}/${BASENAME}" rsync -rp -R "${encrypted_file}" "${TMPDIR}/${BASENAME}"
done done < ${TMPDIR}/${BASENAME}/${TMPFILE}
cd "${TMPDIR}/${BASENAME}" cd "${TMPDIR}/${BASENAME}"
for encrypted_file in $(awk '{print $2}' ${TMPFILE}); do while read encrypted_file; do
git add "${encrypted_file}" git add "${encrypted_file}"
done done < ${TMPDIR}/${BASENAME}/${TMPFILE}
git commit -m "New encrypted files" || true git commit -m "New encrypted files" || true
popd popd

View file

@ -9,10 +9,6 @@ Workstations:
- **home** - Home desktop computer for work. - **home** - Home desktop computer for work.
- **asus-gl553vd** - My laptop for remote work. - **asus-gl553vd** - My laptop for remote work.
### Modules
- **Docker stack** - It creates services in docker swarm node.
# Home Manager configs # Home Manager configs
User configurations are included. User configurations are included.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.