blob: e450c24214fb51979ace8537cde20b444df02519 (
plain) (
tree)
|
|
{ darwin, systemName, ... }:
{ lib, pkgs, ... }:
{
home.stateVersion = "23.05";
xdg.enable = true;
imports =
[
./shell.nix
./ssh.nix
./git.nix
]
++ lib.optionals darwin [
./1password.nix
./go.nix
]
++ lib.optionals (systemName == "hq-c02fk3q7md6t") [ ./work.nix ];
home.packages =
with pkgs;
[
# encryption
age
nil # nix lsp
nix-direnv # integration with direnv
nixfmt-rfc-style # new formatter
]
++ (lib.optionals (darwin) [
# media
mpv
ffmpeg
# rust
rustup
]);
}
|