Compare commits

...

2 commits

Author SHA1 Message Date
0bb518845d add volly configuration 2023-08-05 17:04:36 -05:00
53c4426d48 sort homeconfigurations 2023-08-05 17:02:46 -05:00
2 changed files with 21 additions and 5 deletions

View file

@ -63,21 +63,26 @@
pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; };
};
"john@penguin-fw" = lib.homeManagerConfiguration {
modules = [ ./home/penguin-fw.nix ];
pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; };
};
"john@penguin-duet" = lib.homeManagerConfiguration {
modules = [ ./home/penguin-duet.nix ];
pkgs = pkgsFor.aarch64-linux;
extraSpecialArgs = { inherit inputs outputs; };
};
"john@penguin-fw" = lib.homeManagerConfiguration {
modules = [ ./home/penguin-fw.nix ];
pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; };
};
"john@pixnix" = lib.homeManagerConfiguration {
modules = [ ./home/pixnix.nix ];
pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; };
};
"john@volly" = lib.homeManagerConfiguration {
modules = [ ./home/volly.nix ];
pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; };
};
};
};
}

11
home/volly.nix Normal file
View file

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