chore: remove server since unused, remove overlay

This commit is contained in:
Ahwx 2024-10-18 11:40:42 +02:00
parent 57245a24e6
commit fb39e23864
2 changed files with 2 additions and 62 deletions

View file

@ -38,7 +38,7 @@
outputs = { nixpkgs, self, catppuccin, ...} @ inputs:
let
selfPkgs = import ./pkgs;
# selfPkgs = import ./pkgs;
username = "liv";
system = "x86_64-linux";
pkgs = import nixpkgs {
@ -48,7 +48,7 @@
lib = nixpkgs.lib;
in
{
overlays.default = selfPkgs.overlay;
# overlays.default = selfPkgs.overlay;
nixosConfigurations = {
desktop = nixpkgs.lib.nixosSystem {
inherit system;
@ -80,14 +80,6 @@
)];
specialArgs = { host="vm"; inherit self inputs username ; };
};
server = nixpkgs.lib.nixosSystem {
inherit system;
modules = [(
import ./hosts/server
)];
specialArgs = { host="server"; inherit self inputs username ; };
};
};
};
}