Disable Xonsh and clean up flake
This commit is contained in:
@@ -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; };
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user