Compare commits

...

5 Commits

Author SHA1 Message Date
Giulio De Pasquale
989152c7bc flake: update lock 2023-11-21 13:32:59 +01:00
Giulio De Pasquale
304231cabc sonarr: allow Tailscale net 2023-11-21 13:32:07 +01:00
Giulio De Pasquale
a445dc1250 common: pipenv, python3, htop, glances and tree 2023-11-21 13:31:43 +01:00
Giulio De Pasquale
6c6806f5ee helix: yaml and typescript LSP 2023-11-21 13:31:15 +01:00
Giulio De Pasquale
353cc6cc31 helix: use ruff 2023-11-21 13:30:43 +01:00
4 changed files with 22 additions and 14 deletions

18
flake.lock generated
View File

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1699748081, "lastModified": 1700392168,
"narHash": "sha256-MOmMapBydd7MTjhX4eeQZzKlCABWw8W6iSHSG4OeFKE=", "narHash": "sha256-v5LprEFx3u4+1vmds9K0/i7sHjT0IYGs7u9v54iz/OA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "04bac349d585c9df38d78e0285b780a140dc74a4", "rev": "28535c3a34d79071f2ccb68671971ce0c0984d7e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -23,11 +23,11 @@
}, },
"nixos-unstable": { "nixos-unstable": {
"locked": { "locked": {
"lastModified": 1699781429, "lastModified": 1700390070,
"narHash": "sha256-UYefjidASiLORAjIvVsUHG6WBtRhM67kTjEY4XfZOFs=", "narHash": "sha256-de9KYi8rSJpqvBfNwscWdalIJXPo8NjdIZcEJum1mH0=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e44462d6021bfe23dfb24b775cc7c390844f773d", "rev": "e4ad989506ec7d71f7302cc3067abd82730a4beb",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -39,11 +39,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1700097215, "lastModified": 1700565382,
"narHash": "sha256-ODQ3gBTv1iHd7lG21H+ErVISB5wVeOhd/dEogOqHs/I=", "narHash": "sha256-fn7daU1uz0BDWyRmOqm1N8rvnGCYB0kHjzKB5MeG2P8=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "9fb122519e9cd465d532f736a98c1e1eb541ef6f", "rev": "767986a42765f97edb87e9134133cb3057fcecb3",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -9,12 +9,15 @@ in
group = "media"; group = "media";
}; };
architect.vhost.${domain} = { architect.vhost.${domain} = with config.architect.networks; {
dnsInterfaces = [ "tailscale" ]; dnsInterfaces = [ "tailscale" ];
locations."/" = { locations."/" = {
port = 8989; port = 8989;
allowLan = true; allowLan = true;
allow = [
tailscale.net
];
}; };
}; };

View File

@ -16,6 +16,11 @@
ripgrep ripgrep
ydiff ydiff
nix-index nix-index
pipenv
python3
htop
glances
tree
] ]
++ lib.optional (!stdenv.isDarwin) pastebinit; ++ lib.optional (!stdenv.isDarwin) pastebinit;

View File

@ -3,10 +3,7 @@
let let
pythonPkgs = with pkgs.python3Packages; [ pythonPkgs = with pkgs.python3Packages; [
python-lsp-server python-lsp-server
pyflakes python-lsp-ruff
rope
yapf
autoflake
]; ];
in in
{ {
@ -60,7 +57,10 @@ in
nodePackages.vscode-langservers-extracted nodePackages.vscode-langservers-extracted
nodePackages.typescript nodePackages.typescript
nodePackages.svelte-language-server nodePackages.svelte-language-server
nodePackages.yaml-language-server
nodePackages.typescript-language-server
nixpkgs-fmt nixpkgs-fmt
ruff
] ++ pythonPkgs; ] ++ pythonPkgs;
}; };
} }