nixos-framework-laptop-config/home/default.nix

38 lines
863 B
Nix
Raw Permalink Normal View History

2024-12-28 19:33:49 -05:00
{
pkgs,
2025-06-25 05:05:30 -04:00
inputs,
2024-12-28 19:33:49 -05:00
...
2025-06-25 05:05:30 -04:00
}:
{
2024-12-28 19:33:49 -05:00
imports = [
2025-06-25 05:05:30 -04:00
inputs.nix-templates.homeManagerModules.default
inputs.nix-templates.homeManagerModules.home
inputs.nix-templates.homeManagerModules.dev
2024-12-28 19:33:49 -05:00
2025-06-25 05:05:30 -04:00
# ./xdg.nix
./vm.nix
2024-12-28 19:33:49 -05:00
];
programs.ssh = {
enable = true;
addKeysToAgent = "1h";
};
2025-06-25 05:05:30 -04:00
2024-12-28 19:33:49 -05:00
services.ssh-agent.enable = true;
programs.yt-dlp.enable = true;
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
# incompatible changes.
#
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "23.11";
# Let Home Manager install and manage itself.
#programs.home-manager.enable = true;
}