2024-08-31 20:47:00 +02:00
|
|
|
{ minimal, lib, ... }:
|
2023-09-28 19:52:12 +02:00
|
|
|
{
|
2023-01-28 02:50:14 +01:00
|
|
|
imports = [
|
2023-02-10 18:44:07 +01:00
|
|
|
./shells/alias.nix
|
2023-06-02 14:18:30 +02:00
|
|
|
./shells/zsh
|
|
|
|
|
2023-10-06 22:01:50 +02:00
|
|
|
./programs/gpg.nix
|
2024-08-31 20:47:00 +02:00
|
|
|
] ++ lib.optional (!minimal) ./programs/htop.nix;
|
2023-06-02 17:08:21 +02:00
|
|
|
|
2023-09-28 19:52:12 +02:00
|
|
|
programs.bat.enable = true;
|
2023-05-22 16:22:40 +02:00
|
|
|
nixpkgs.config = {
|
|
|
|
allowUnfree = true;
|
|
|
|
};
|
2023-01-21 17:30:50 +01:00
|
|
|
}
|