22 lines
309 B
Nix
22 lines
309 B
Nix
{
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
imports =
|
|
(with inputs; [
|
|
sops-nix.homeManagerModules.sops
|
|
betterfox-nix.homeManagerModules.betterfox
|
|
])
|
|
++ [
|
|
./programs
|
|
./xdg-dirs.nix
|
|
];
|
|
|
|
config = {
|
|
programs.direnv = {
|
|
enable = true;
|
|
nix-direnv.enable = true;
|
|
};
|
|
};
|
|
}
|