nix-config/users/common/default.nix
Patrick ee0e489618
reworked file layout
reworked impermanence
2023-09-02 17:30:09 +02:00

16 lines
191 B
Nix

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