nix-config/users/common/default.nix

16 lines
191 B
Nix

{pkgs, ...}: {
imports = [
./shells/alias.nix
./shells/zsh
./programs/gpg
];
home.packages = with pkgs; [
bat
];
nixpkgs.config = {
allowUnfree = true;
};
}