mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-22 01:12:19 +00:00
clean up home-manager hosts
This commit is contained in:
parent
2ff855a3b4
commit
920e3d7277
4 changed files with 7 additions and 23 deletions
|
@ -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; };
|
||||
};
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
{ inputs, outputs, lib, config, pkgs, ... }: {
|
||||
imports = [
|
||||
./global
|
||||
./features/cli/extras
|
||||
];
|
||||
|
||||
# packages
|
||||
home.packages = with pkgs; [
|
||||
|
||||
];
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
{ inputs, outputs, lib, config, pkgs, ... }: {
|
||||
imports = [
|
||||
./global
|
||||
];
|
||||
|
||||
# packages
|
||||
home.packages = with pkgs; [
|
||||
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue