- Update nixpkgs and home-manager to 25.11 release - Update flake dependencies - Migrate git config to settings attribute - Replace deprecated packages (mpc-cli -> mpc, vaapiIntel -> intel-vaapi-driver) - Fix system references to use stdenv.hostPlatform.system - Add crowdsec module overrides - Remove android-udev-rules from fuchsia - Configure SSH with enableDefaultConfig = false - Update zsh dotDir to use config.xdg.configHome
23 lines
300 B
Nix
23 lines
300 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./git.nix
|
|
./mpd.nix
|
|
./ssh.nix
|
|
./zsh.nix
|
|
];
|
|
|
|
home.packages = with pkgs;
|
|
[
|
|
mum
|
|
btop
|
|
unstable.qmk
|
|
unstable.rmapi
|
|
]
|
|
++ [
|
|
inputs.remarks.packages.${pkgs.stdenv.hostPlatform.system}.default
|
|
];
|
|
}
|