mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
got python default.nix working
This commit is contained in:
@@ -9,7 +9,6 @@
|
|||||||
imports = [
|
imports = [
|
||||||
inputs.home-manager.nixosModules.home-manager
|
inputs.home-manager.nixosModules.home-manager
|
||||||
inputs.sops-nix.nixosModules.sops
|
inputs.sops-nix.nixosModules.sops
|
||||||
../../python
|
|
||||||
./fail2ban.nix
|
./fail2ban.nix
|
||||||
./fonts.nix
|
./fonts.nix
|
||||||
./libs.nix
|
./libs.nix
|
||||||
@@ -17,8 +16,9 @@
|
|||||||
./nh.nix
|
./nh.nix
|
||||||
./nix.nix
|
./nix.nix
|
||||||
./programs.nix
|
./programs.nix
|
||||||
./snapshot_manager.nix
|
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
|
./snapshot_manager.nix
|
||||||
|
../../python
|
||||||
];
|
];
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
|
|||||||
@@ -2,6 +2,5 @@
|
|||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
git
|
git
|
||||||
python313
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = [
|
||||||
python313.withPackages
|
(pkgs.python313.withPackages (
|
||||||
(
|
|
||||||
ps: with ps; [
|
ps: with ps; [
|
||||||
apprise
|
apprise
|
||||||
apscheduler
|
apscheduler
|
||||||
@@ -18,6 +17,6 @@
|
|||||||
typer
|
typer
|
||||||
types-requests
|
types-requests
|
||||||
]
|
]
|
||||||
)
|
))
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
wget
|
wget
|
||||||
# python
|
# python
|
||||||
poetry
|
poetry
|
||||||
python313
|
|
||||||
ruff
|
ruff
|
||||||
uv
|
uv
|
||||||
# nodejs
|
# nodejs
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
wget
|
wget
|
||||||
# python
|
# python
|
||||||
poetry
|
poetry
|
||||||
python313
|
|
||||||
ruff
|
ruff
|
||||||
uv
|
uv
|
||||||
# nodejs
|
# nodejs
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
wget
|
wget
|
||||||
# python
|
# python
|
||||||
poetry
|
poetry
|
||||||
python313
|
|
||||||
ruff
|
ruff
|
||||||
uv
|
uv
|
||||||
# nodejs
|
# nodejs
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
wget
|
wget
|
||||||
# python
|
# python
|
||||||
poetry
|
poetry
|
||||||
python313
|
|
||||||
ruff
|
ruff
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,7 +40,6 @@
|
|||||||
wget
|
wget
|
||||||
# python
|
# python
|
||||||
poetry
|
poetry
|
||||||
python313
|
|
||||||
ruff
|
ruff
|
||||||
uv
|
uv
|
||||||
# nodejs
|
# nodejs
|
||||||
|
|||||||
Reference in New Issue
Block a user