Disable Xonsh and clean up flake

This commit is contained in:
2022-09-04 10:52:40 -07:00
parent 7309257981
commit 68370421b8
3 changed files with 21 additions and 96 deletions

View File

@@ -5,16 +5,23 @@
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
home-manager.inputs.utils.follows = "utils";
mach-nix.url = "mach-nix/3.5.0";
mach-nix.inputs.nixpkgs.follows = "nixpkgs";
# mach-nix.url = "mach-nix/3.5.0";
# mach-nix.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = {self, nixpkgs, flake-utils, home-manager, mach-nix, ...}: let
outputs = {
self,
nixpkgs,
utils,
home-manager,
# mach-nix,
...}: let
pkgsForSystem = (system: import nixpkgs {
inherit system;
overlays = [
self.overlays."${system}".xonsh_with_plugins
# self.overlays."${system}".xonsh_with_plugins
];
config.allowUnfree = true;
});
@@ -34,8 +41,8 @@
];
});
in
flake-utils.lib.eachDefaultSystem (system: {
overlays.xonsh_with_plugins = import ./overlays/xonsh.nix { mach-nix = mach-nix.lib."${system}"; };
utils.lib.eachDefaultSystem (system: {
# overlays.xonsh_with_plugins = import ./overlays/xonsh.nix { mach-nix = mach-nix.lib."${system}"; };
legacyPackages.homeConfigurations.std = mkHomeConfig { inherit system; };
});
}