nix-config/home/franz.nix

28 lines
443 B
Nix
Raw Normal View History

2024-03-02 17:17:52 +01:00
{
inputs,
outputs,
...
}: let
in {
imports = [
./global
./features/coding/nvim
2024-06-13 23:30:48 +02:00
./features/coding/tmux.nix
2024-03-02 17:17:52 +01:00
inputs.nix-colors.homeManagerModules.default
];
colorScheme = inputs.nix-colors.colorSchemes.catppuccin-mocha;
2024-03-03 20:04:13 +01:00
home.file.".docker" = {
source = ../rsc/docker/franz;
recursive = true;
};
2024-03-16 18:21:00 +01:00
nixpkgs = {
config = {
permittedInsecurePackages = [
"nix-2.15.3"
];
};
};
2024-03-02 17:17:52 +01:00
}