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

View File

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

View File

@ -16,11 +16,6 @@
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,7 +3,10 @@
let let
pythonPkgs = with pkgs.python3Packages; [ pythonPkgs = with pkgs.python3Packages; [
python-lsp-server python-lsp-server
python-lsp-ruff pyflakes
rope
yapf
autoflake
]; ];
in in
{ {
@ -57,10 +60,7 @@ 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;
}; };
} }