[feat] Added some neovim plugins and removed mozilla folder
This commit is contained in:
@@ -1,29 +1,27 @@
|
||||
{ devices, inputs, overlays, home-manager, nix-darwin, ... }:
|
||||
builtins.listToAttrs (builtins.map
|
||||
(device: {
|
||||
name = device.name;
|
||||
value = nix-darwin.lib.darwinSystem {
|
||||
system = device.system;
|
||||
modules = [
|
||||
{
|
||||
nixpkgs.overlays = overlays;
|
||||
# nixpkgs.hostPlatform.config = device.system;
|
||||
}
|
||||
./configuration.nix
|
||||
home-manager.darwinModules.home-manager
|
||||
{
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
extraSpecialArgs = {
|
||||
inherit inputs;
|
||||
inherit device;
|
||||
};
|
||||
users.${device.user}.imports = [ ../common/home.nix ];
|
||||
builtins.listToAttrs (builtins.map (device: {
|
||||
name = device.name;
|
||||
value = nix-darwin.lib.darwinSystem {
|
||||
system = device.system;
|
||||
modules = [
|
||||
{
|
||||
nixpkgs.overlays = overlays;
|
||||
# nixpkgs.hostPlatform.config = device.system;
|
||||
}
|
||||
./configuration.nix
|
||||
home-manager.darwinModules.home-manager
|
||||
{
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
extraSpecialArgs = {
|
||||
inherit inputs;
|
||||
inherit device;
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
})
|
||||
devices)
|
||||
users.${device.user}.imports = [ ../common/home.nix ];
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
}) devices)
|
||||
|
||||
Reference in New Issue
Block a user