Revert "hosts: add server"

It turns out that sharing this config with the server isn't actually
that useful, especially since nix makes it easy to run any program in
nixpkgs on demand.
This commit is contained in:
Donovan Glover 2025-01-26 07:24:33 -05:00
parent 0eb41f163d
commit 173206ce64
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 0 additions and 20 deletions

View File

@ -95,12 +95,6 @@
specialArgs.nix-config = self;
modules = listFilesRecursive ./hosts/iso;
};
server = nixosSystem {
system = "x86_64-linux";
specialArgs.nix-config = self;
modules = listFilesRecursive ./hosts/server;
};
};
formatter = forAllSystems (pkgs: pkgs.nixfmt-rfc-style);

View File

@ -1,14 +0,0 @@
{ pkgs, modulesPath, ... }:
{
imports = [
(modulesPath + "/virtualisation/digital-ocean-image.nix")
];
environment.systemPackages = [ pkgs.neovim ];
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
}