Compare commits
No commits in common. "237d22276ec53727b8de6f52eee47ab92258d239" and "4677b627d412fc606886190e0edd45b916314cd2" have entirely different histories.
237d22276e
...
4677b627d4
2 changed files with 1 additions and 11 deletions
|
@ -6,10 +6,6 @@
|
|||
|
||||
programs.command-not-found.enable = false;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
any-nix-shell
|
||||
];
|
||||
|
||||
users.defaultUserShell = pkgs.xonsh;
|
||||
programs.xonsh =
|
||||
let
|
||||
|
@ -34,7 +30,6 @@
|
|||
gh copilot alias -- bash > @(tmpfile)
|
||||
source-bash @(tmpfile)
|
||||
ulimit -n 4096 # This is so that Gauntlet is able to be built
|
||||
execx($(${pkgs.any-nix-shell}/bin/any-nix-shell xonsh --info-right))
|
||||
'';
|
||||
package = pkgs.xonsh.override {
|
||||
extraPackages = ps: [
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
{ pkgs, ... }:
|
||||
(pkgs.python311Packages.buildPythonPackage rec {
|
||||
(pkgs.python3Packages.buildPythonPackage rec {
|
||||
name = "xontrib-cd";
|
||||
version = "0.3.1";
|
||||
format = "pyproject";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "eugenesvk";
|
||||
|
@ -11,10 +10,6 @@
|
|||
sha256 = "XxSxjyCg7PeX1v3e2KKicvAPmNeq+qVqbW4fXTwAiic=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with pkgs.python311Packages; [ poetry-core ];
|
||||
|
||||
propagatedBuildInputs = with pkgs.python311Packages; [ xonsh ];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/eugenesvk/xontrib-cd";
|
||||
description = "`cd` to any path without escaping in xonsh shell: `cd ~/[te] st`";
|
||||
|
|
Loading…
Add table
Reference in a new issue