Compare commits

..

No commits in common. "989152c7bc6ff5d6d419d899a99e7bafa27ca831" and "5e6f60b8d5cb1af1425072f740f4a23cf331e482" have entirely different histories.

4 changed files with 14 additions and 22 deletions

18
flake.lock generated
View File

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

View File

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

View File

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

View File

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