nixos-config/configuration.nix

21 lines
436 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
let
local = import ../host-config.nix;
initialize = import ./initialize.nix;
in {
imports = [
(initialize {
hostname = local.hostname;
profile = local.profile;
site = local.site;
domain = local.domain;
home-manager-package = builtins.fetchGit {
url = "https://github.com/nix-community/home-manager.git";
2021-03-01 14:43:27 -08:00
ref = "release-20.03";
};
})
];
}