1
0
Fork 0

Compare commits

...

3 commits

Author SHA1 Message Date
Daniel Kempkens df3af9e17a
postgres: Update TS address
All checks were successful
Build / build-amd64-linux (push) Successful in 1h15m6s
Build / build-arm64-linux (push) Successful in 1h49m42s
2023-09-28 22:46:48 +02:00
Daniel Kempkens d3a76df86d
podman: Install podman-compose 2023-09-28 22:46:30 +02:00
Daniel Kempkens d58d5d5a12
Update deps 2023-09-28 22:46:10 +02:00
5 changed files with 20 additions and 40 deletions

View file

@ -397,11 +397,11 @@
}, },
"nixos-unstable": { "nixos-unstable": {
"locked": { "locked": {
"lastModified": 1695644571, "lastModified": 1695830400,
"narHash": "sha256-asS9dCCdlt1lPq0DLwkVBbVoEKuEuz+Zi3DG7pR/RxA=", "narHash": "sha256-gToZXQVr0G/1WriO83olnqrLSHF2Jb8BPcmCt497ro0=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "6500b4580c2a1f3d0f980d32d285739d8e156d92", "rev": "8a86b98f0ba1c405358f1b71ff8b5e1d317f5db2",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -1,29 +1,8 @@
(let [indent (require :indent_blankline)] (let [indent (require :ibl)]
(indent.setup {:char "┆" (indent.setup {:indent {:char "┆"}
:show_first_indent_level false :scope {:char "┆"}
:use_treesitter true :exclude {:buftypes [:help
:show_current_context true :nofile
:context_char "│" :prompt
:context_patterns [:class :quickfix
:^func :terminal]}}))
:method
:^if
:while
:for
:with
:try
:except
:arguments
:argument_list
:object
:dictionary
:map
:element
:list
:table
:sequential_table
:tuple
:do_block
:stab_clause]
:buftype_exclude [:help :nofile :prompt :quickfix :terminal]}))

View file

@ -118,12 +118,12 @@ in
}; };
nvim-treesitter = buildVimPluginFrom2Nix { nvim-treesitter = buildVimPluginFrom2Nix {
pname = "nvim-treesitter"; pname = "nvim-treesitter";
version = "2023-09-27"; version = "2023-09-28";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "nvim-treesitter"; owner = "nvim-treesitter";
repo = "nvim-treesitter"; repo = "nvim-treesitter";
rev = "cb139d880bcf9b3a6f29f2bd088a7491d1662918"; rev = "cc2f94ed1dfa008c23e16bbd17f56b967ceb6740";
sha256 = "0dzzhcxd6kvsdg7llrcl8h3src1lajkrbf6mxl31z9iygvnkrnfq"; sha256 = "1nxcpidazzj3azb2yki8kfikdwg4r2jgjdp2a8lc14mk0r4q04z7";
fetchSubmodules = false; fetchSubmodules = false;
}; };
}; };
@ -246,8 +246,8 @@ in
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "neovim"; owner = "neovim";
repo = "nvim-lspconfig"; repo = "nvim-lspconfig";
rev = "c7077400d004c1a424d210af76ce198250db72fd"; rev = "68b23c06132cb1ef8d5690111c112388fbcf1c30";
sha256 = "0bbq2iyzy6glzp2z9cvl9ippg2hqxpcryxmrvrrhdn7ryc3v4k3r"; sha256 = "07z9db5kx29ydjnparlqn1yx42pcx0q2i3fgx7m0j0mg2sgz82dy";
fetchSubmodules = false; fetchSubmodules = false;
}; };
}; };
@ -532,8 +532,8 @@ in
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "lukas-reineke"; owner = "lukas-reineke";
repo = "indent-blankline.nvim"; repo = "indent-blankline.nvim";
rev = "4872a53987167e70b9285a9ebcc1d286b9e13b06"; rev = "f5335ef7493bd6adf5f2ae21d67240709a514408";
sha256 = "0xvz6mf3f2bhd18d5r2pkv7v79pl2jwar106b05ywc9r7gsvqg07"; sha256 = "0k3l15rb4443lqnr113jwrj5jaa2was68y0xv0q14fjwb7lj92bq";
fetchSubmodules = false; fetchSubmodules = false;
}; };
}; };

View file

@ -3,6 +3,7 @@
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
podman podman
podman-compose
qemu qemu
gvproxy gvproxy
skopeo skopeo

View file

@ -14,7 +14,7 @@
}; };
authentication = '' authentication = ''
host all all 100.66.42.98/32 md5 host all all 100.64.10.3/32 md5
host all all 10.88.0.0/16 md5 host all all 10.88.0.0/16 md5
''; '';
}; };