remove neovim

Signed-off-by: Michael Thomson <michael@michaelthomson.dev>
This commit is contained in:
2024-11-17 21:03:50 -05:00
parent 116e757499
commit f3e9f9e031
28 changed files with 34 additions and 686 deletions

View File

@@ -19,25 +19,29 @@
};
};
outputs = inputs@{ self, nixpkgs, home-manager, nix-darwin, nixos-hardware, nixvim, ... }: {
outputs = inputs @ {
nixpkgs,
nix-darwin,
...
}: {
nixosConfigurations = {
desktop = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
specialArgs = {inherit inputs;};
modules = [
./hosts/desktop/configuration.nix
];
};
thinkpad = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
specialArgs = {inherit inputs;};
modules = [
./hosts/thinkpad/configuration.nix
];
};
dell = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
specialArgs = {inherit inputs;};
modules = [
./hosts/dell/configuration.nix
];
@@ -46,7 +50,7 @@
darwinConfigurations = {
macbook = nix-darwin.lib.darwinSystem {
specialArgs = { inherit inputs; };
specialArgs = {inherit inputs;};
modules = [
./hosts/macbook/configuration.nix
];