Create hm-config.nix

This commit is contained in:
ediblerope 2025-12-04 11:35:17 +00:00 committed by GitHub
parent 1ec2c4f276
commit f58b10d558
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,15 @@
# hm-config.nix
{ config, pkgs, lib, ... }:
{
imports = [
<home-manager/nixos>
];
home-manager.users.fred = { pkgs, ... }: {
imports = [
./settings/home.nix # We will create this file next
];
};
}