29 lines
786 B
Nix
Executable File
29 lines
786 B
Nix
Executable File
{ pkgs, ... }:
|
|
let
|
|
shellAliases = {
|
|
update-boot = "sudo nixos-rebuild boot --max-jobs 10 --build-host admin@10.0.1.3";
|
|
update-switch = "sudo nixos-rebuild switch --max-jobs 10 --build-host admin@10.0.1.3";
|
|
update-flake = "nix flake update mac-nixpkgs mac-nixos-apple-silicon mac-home-manager mac-impermanence mac-sops-nix --flake /etc/nixos";
|
|
update-nas = "nixos-rebuild switch --use-remote-sudo --target-host admin@10.0.1.3 --build-host admin@10.0.1.3 --flake ~/nix-config#jallen-nas";
|
|
};
|
|
in
|
|
{
|
|
|
|
home.username = "matt";
|
|
home.homeDirectory = "/home/matt";
|
|
home.stateVersion = "23.11";
|
|
|
|
home.packages = with pkgs; [
|
|
iw
|
|
iwd
|
|
orca-slicer
|
|
vscodium
|
|
];
|
|
|
|
programs = {
|
|
password-store.enable = true;
|
|
|
|
zsh.shellAliases = shellAliases;
|
|
};
|
|
}
|