python: Move to separate file
This commit is contained in:
parent
83b38ddf61
commit
8f370c5040
|
@ -43,7 +43,6 @@
|
||||||
ffplay = "ffplay -hide_banner";
|
ffplay = "ffplay -hide_banner";
|
||||||
numbat = "numbat --intro-banner off";
|
numbat = "numbat --intro-banner off";
|
||||||
insect = "numbat";
|
insect = "numbat";
|
||||||
ipython = "ipython --no-confirm-exit --pdb";
|
|
||||||
bat = "bat -A";
|
bat = "bat -A";
|
||||||
|
|
||||||
# Frequent mistakes
|
# Frequent mistakes
|
||||||
|
@ -233,9 +232,6 @@
|
||||||
log-scale: yes
|
log-scale: yes
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
"pythonstartup.py" = {
|
|
||||||
text = (builtins.readFile ./pythonstartup.py);
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
home = {
|
home = {
|
||||||
|
@ -326,7 +322,6 @@
|
||||||
# INPUTRC = "${config.xdg.configHome}/inputrc"; # UPST Will use programs.readline, but doesn't allow path setting
|
# INPUTRC = "${config.xdg.configHome}/inputrc"; # UPST Will use programs.readline, but doesn't allow path setting
|
||||||
LESSHISTFILE = "${config.xdg.stateHome}/lesshst";
|
LESSHISTFILE = "${config.xdg.stateHome}/lesshst";
|
||||||
NODE_REPL_HISTORY = "${config.xdg.cacheHome}/node_repl_history";
|
NODE_REPL_HISTORY = "${config.xdg.cacheHome}/node_repl_history";
|
||||||
PYTHONSTARTUP = "${config.xdg.configHome}/pythonstartup.py";
|
|
||||||
# TODO I think we're not using the urxvt daemon on purpose?
|
# TODO I think we're not using the urxvt daemon on purpose?
|
||||||
# TODO this should be desktop only, as a few things are too.
|
# TODO this should be desktop only, as a few things are too.
|
||||||
SQLITE_HISTFILE = "${config.xdg.stateHome}/sqlite_history";
|
SQLITE_HISTFILE = "${config.xdg.stateHome}/sqlite_history";
|
||||||
|
|
|
@ -50,11 +50,6 @@
|
||||||
] ++ lib.optionals (config.frogeye.desktop.xorg && config.frogeye.dev.fpga) [
|
] ++ lib.optionals (config.frogeye.desktop.xorg && config.frogeye.dev.fpga) [
|
||||||
yosys
|
yosys
|
||||||
gtkwave
|
gtkwave
|
||||||
|
|
||||||
# Python
|
|
||||||
] ++ lib.optionals config.frogeye.dev.python [
|
|
||||||
python3Packages.ipython
|
|
||||||
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
56
hm/dev/python.nix
Normal file
56
hm/dev/python.nix
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
{ pkgs, lib, config, ... }:
|
||||||
|
{
|
||||||
|
config = lib.mkIf config.frogeye.dev.python {
|
||||||
|
frogeye = {
|
||||||
|
shellAliases = {
|
||||||
|
ipython = "ipython --no-confirm-exit --pdb";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
home = {
|
||||||
|
packages = with pkgs; [
|
||||||
|
python3
|
||||||
|
python3Packages.ipython
|
||||||
|
];
|
||||||
|
sessionVariables = {
|
||||||
|
PYTHONSTARTUP = "${config.xdg.configHome}/pythonstartup.py";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
programs.nixvim.plugins.lsp.servers.pylsp = {
|
||||||
|
# Python
|
||||||
|
enable = config.frogeye.dev.python;
|
||||||
|
settings.plugins = {
|
||||||
|
black.enabled = true;
|
||||||
|
flake8 = {
|
||||||
|
enabled = true;
|
||||||
|
maxLineLength = 88; # Compatibility with Black
|
||||||
|
};
|
||||||
|
isort.enabled = true;
|
||||||
|
mccabe.enabled = true;
|
||||||
|
pycodestyle = {
|
||||||
|
enabled = true;
|
||||||
|
maxLineLength = 88; # Compatibility with Black
|
||||||
|
};
|
||||||
|
pyflakes.enabled = true;
|
||||||
|
pylint.enabled = true;
|
||||||
|
pylsp_mypy = {
|
||||||
|
enabled = true;
|
||||||
|
overrides = [
|
||||||
|
"--cache-dir=${config.xdg.cacheHome}/mypy"
|
||||||
|
"--ignore-missing-imports"
|
||||||
|
"--disallow-untyped-defs"
|
||||||
|
"--disallow-untyped-calls"
|
||||||
|
"--disallow-incomplete-defs"
|
||||||
|
"--disallow-untyped-decorators"
|
||||||
|
true
|
||||||
|
];
|
||||||
|
};
|
||||||
|
# TODO Could add some, could also remove some
|
||||||
|
};
|
||||||
|
};
|
||||||
|
xdg.configFile = {
|
||||||
|
"pythonstartup.py" = {
|
||||||
|
text = (builtins.readFile ./pythonstartup.py);
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -158,38 +158,6 @@ in
|
||||||
jsonls.enable = true; # JSON
|
jsonls.enable = true; # JSON
|
||||||
lua-ls.enable = true; # Lua (for Neovim debugging)
|
lua-ls.enable = true; # Lua (for Neovim debugging)
|
||||||
perlpls.enable = config.frogeye.dev.perl; # Perl
|
perlpls.enable = config.frogeye.dev.perl; # Perl
|
||||||
pylsp = {
|
|
||||||
# Python
|
|
||||||
enable = config.frogeye.dev.python;
|
|
||||||
settings.plugins = {
|
|
||||||
black.enabled = true;
|
|
||||||
flake8 = {
|
|
||||||
enabled = true;
|
|
||||||
maxLineLength = 88; # Compatibility with Black
|
|
||||||
};
|
|
||||||
isort.enabled = true;
|
|
||||||
mccabe.enabled = true;
|
|
||||||
pycodestyle = {
|
|
||||||
enabled = true;
|
|
||||||
maxLineLength = 88; # Compatibility with Black
|
|
||||||
};
|
|
||||||
pyflakes.enabled = true;
|
|
||||||
pylint.enabled = true;
|
|
||||||
pylsp_mypy = {
|
|
||||||
enabled = true;
|
|
||||||
overrides = [
|
|
||||||
"--cache-dir=${config.xdg.cacheHome}/mypy"
|
|
||||||
"--ignore-missing-imports"
|
|
||||||
"--disallow-untyped-defs"
|
|
||||||
"--disallow-untyped-calls"
|
|
||||||
"--disallow-incomplete-defs"
|
|
||||||
"--disallow-untyped-decorators"
|
|
||||||
true
|
|
||||||
];
|
|
||||||
};
|
|
||||||
# TODO Could add some, could also remove some
|
|
||||||
};
|
|
||||||
};
|
|
||||||
phpactor.enable = config.frogeye.dev.php; # PHP
|
phpactor.enable = config.frogeye.dev.php; # PHP
|
||||||
rnix-lsp.enable = true; # Nix
|
rnix-lsp.enable = true; # Nix
|
||||||
# TODO Something for SQL. sqls is deprecated, sqlls is not in Nixpkgs. Probably needs a DB connection configured anyways?
|
# TODO Something for SQL. sqls is deprecated, sqlls is not in Nixpkgs. Probably needs a DB connection configured anyways?
|
||||||
|
|
Loading…
Reference in a new issue