format, add nixpkgs to xonsh
This commit is contained in:
parent
7faae5e9f9
commit
836bc1e675
|
@ -169,7 +169,14 @@
|
||||||
};
|
};
|
||||||
firejail.enable = true;
|
firejail.enable = true;
|
||||||
fish.enable = true;
|
fish.enable = true;
|
||||||
xonsh.enable = true;
|
xonsh = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.xonsh.overridePythonAttrs (
|
||||||
|
old: {
|
||||||
|
propagatedBuildInputs = old.propagatedBuildInputs ++ [ pkgs.python3Packages.nixpkgs ];
|
||||||
|
}
|
||||||
|
);
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
users = {
|
users = {
|
||||||
|
|
|
@ -148,6 +148,7 @@ in
|
||||||
|
|
||||||
# Development
|
# Development
|
||||||
arduino
|
arduino
|
||||||
|
bear
|
||||||
binutils-unwrapped
|
binutils-unwrapped
|
||||||
ccache
|
ccache
|
||||||
clang-tools
|
clang-tools
|
||||||
|
@ -157,13 +158,16 @@ in
|
||||||
gdb
|
gdb
|
||||||
gnumake
|
gnumake
|
||||||
go
|
go
|
||||||
|
gopls
|
||||||
jetbrains.clion
|
jetbrains.clion
|
||||||
llvm.clang
|
llvm.clang
|
||||||
llvm.lld
|
llvm.lld
|
||||||
nasm
|
nasm
|
||||||
|
nixpkgs-fmt
|
||||||
nodejs
|
nodejs
|
||||||
patchelf
|
patchelf
|
||||||
python37Packages.python-language-server
|
python3Packages.python-language-server
|
||||||
|
rnix-lsp
|
||||||
rr
|
rr
|
||||||
rustup
|
rustup
|
||||||
valgrind
|
valgrind
|
||||||
|
|
Loading…
Reference in a new issue