nixcfg/hosts/mossdeep/home.nix

15 lines
181 B
Nix
Raw Normal View History

{
inputs,
config,
pkgs,
lib,
...
}: {
imports = [
inputs.home-manager.nixosModules.home-manager
];
2024-05-21 22:28:52 -04:00
home-manager = {
users.aly = import ../../aly.nix;
};
}