nix-config/home/franz.nix
2024-12-02 20:15:40 +01:00

24 lines
328 B
Nix

{
inputs,
outputs,
...
}: let
in {
imports = [
./global
./features/coding/nvim
./features/coding/tmux.nix
];
home.file.".docker" = {
source = ../rsc/docker/franz;
recursive = true;
};
nixpkgs = {
config = {
permittedInsecurePackages = [
"nix-2.15.3"
];
};
};
}