clean up home-manager hosts

This commit is contained in:
John Bowdre 2024-05-03 10:34:12 -05:00
parent 2ff855a3b4
commit 920e3d7277
4 changed files with 7 additions and 23 deletions

View file

@ -79,12 +79,17 @@
extraSpecialArgs = { inherit inputs outputs; };
};
"john@volly" = lib.homeManagerConfiguration {
modules = [ ./home/volly.nix ];
modules = [ ./home/generic.nix ];
pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; };
};
"john@immich" = lib.homeManagerConfiguration {
modules = [ ./home/generic.nix ];
pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; };
};
"john@doc" = lib.homeManagerConfiguration {
modules = [ ./home/doc.nix ];
modules = [ ./home/generic.nix ];
pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; };
};

View file

@ -1,11 +0,0 @@
{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
./global
./features/cli/extras
];
# packages
home.packages = with pkgs; [
];
}

View file

@ -1,10 +0,0 @@
{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
./global
];
# packages
home.packages = with pkgs; [
];
}