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