komodo binds symlinks

This commit is contained in:
Chris Toph 2025-01-12 14:19:40 -05:00
parent 0dc843b35a
commit 91ec1b141a

View file

@ -1,17 +1,22 @@
{ pkgs, ... }: { pkgs, config, ... }:
{ {
# Module imports # Module imports
imports = [ imports = [
# Common Modules # Common Modules
../../../common/home ../../../common/home
]; ];
home.file = {
Pool.source = config.lib.file.mkOutOfStoreSymlink "/pool";
DockerStorage.source = config.lib.file.mkOutOfStoreSymlink "/mnt/DockerStorage";
};
home.packages = with pkgs; [ home.packages = with pkgs; [
fastfetch fastfetch
fish fish
fishPlugins.grc fishPlugins.grc
fishPlugins.tide fishPlugins.tide
grc grc
lazydocker lazydocker
]; ];
} }