mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 12:23:56 -05:00
14 lines
263 B
Nix
14 lines
263 B
Nix
self: {pkgs, ...}: {
|
|
imports = [
|
|
./common.nix
|
|
./secrets.nix
|
|
self.homeManagerModules.default
|
|
self.inputs.agenix.homeManagerModules.default
|
|
];
|
|
|
|
programs = {
|
|
helix.defaultEditor = true;
|
|
rbw.settings.pinentry = pkgs.pinentry-tty;
|
|
};
|
|
}
|