add volly configuration

This commit is contained in:
John Bowdre 2023-08-05 17:04:36 -05:00
parent 53c4426d48
commit 0bb518845d
2 changed files with 16 additions and 0 deletions

View file

@ -78,6 +78,11 @@
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; [
];
}