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

View File

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

View File

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

View File

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