Create hm-config.nix
This commit is contained in:
parent
1ec2c4f276
commit
f58b10d558
1 changed files with 15 additions and 0 deletions
15
home-manager/hm-config.nix
Normal file
15
home-manager/hm-config.nix
Normal 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
|
||||
];
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue