29ea6b9408
Update everything in home-manager to properly work on darwin (including adding dobharchu as a top-level attribute from //users/glittershark/home) and also fix font faces and sizes in emacs config Change-Id: Ica889dd212876030d5c2a916a71d8b614e6964f1 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2147 Reviewed-by: glittershark <grfn@gws.fyi> Tested-by: BuildkiteCI
29 lines
633 B
Nix
29 lines
633 B
Nix
{ pkgs, depot, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
rec {
|
|
nixpkgs = import pkgs.nixpkgsSrc {};
|
|
|
|
home = confPath: (import "${nixpkgs.home-manager.src}/modules" {
|
|
pkgs = nixpkgs;
|
|
configuration = { config, lib, ... }: {
|
|
imports = [confPath];
|
|
|
|
_module.args.pkgs = mkForce
|
|
(import pkgs.nixpkgsSrc (filterAttrs (n: v: v != null) config.nixpkgs));
|
|
|
|
lib.depot = depot;
|
|
};
|
|
});
|
|
|
|
chupacabra = home ./machines/chupacabra.nix;
|
|
|
|
chupacabraHome = chupacabra.activation-script;
|
|
|
|
dobharchu = home ./machines/dobharchu.nix;
|
|
|
|
dobharchuHome = dobharchu.activation-script;
|
|
|
|
meta.targets = [ "chupacabraHome" ];
|
|
}
|