mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 03:37:18 +00:00
22 lines
439 B
Nix
22 lines
439 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
home.file.".gnupg/gpg-agent.conf" = {
|
|
text = ''
|
|
default-cache-ttl 30
|
|
max-cache-ttl 600
|
|
'';
|
|
};
|
|
|
|
programs.zsh.shellAliases = {
|
|
nrs = "nixos-rebuild switch --flake ${config.home.homeDirectory}/.config/dotfiles.nix#";
|
|
nbs = "nixos-rebuild build --flake ${config.home.homeDirectory}/.config/dotfiles.nix#";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
gcc-arm-embedded
|
|
];
|
|
}
|