mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 03:37:18 +00:00
15 lines
320 B
Nix
15 lines
320 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
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
|
|
];
|
|
}
|