142 current 2024-05-24 23:27:57 24.05.20240419.5c24cf2 6.8.6-zen1 *

This commit is contained in:
sadanslargehole 2024-05-25 22:05:34 -04:00
parent 4f6239e282
commit b8411acbb6
No known key found for this signature in database
GPG key ID: B2E2F4A5161A7800
3 changed files with 39 additions and 39 deletions

36
common/files.nix Normal file
View file

@ -0,0 +1,36 @@
{ config }: rec{
kitty = {
recursive = true;
source = ../dotfiles/kitty;
target = "./.config/kitty";
};
eslint_d_config = {
source = ../dotfiles/eslintrc.json;
target = "./.config/.eslintrc.json";
};
gh = {
recursive = true;
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/nixos/dotfiles/gh";
target = "./.config/gh";
};
btop = {
recursive = true;
source = ../dotfiles/btop;
target = "./.config/btop";
};
nvim = {
recursive = true;
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/nixos/dotfiles/nvim";
target = "./.config/nvim";
};
# # Building this configuration will create a copy of 'dotfiles/screenrc' in
# # the Nix store. Activating the configuration will then make '~/.screenrc' a
# # symlink to the Nix store copy.
# ".screenrc".source = dotfiles/screenrc;
# # You can also set the file content immediately.
# ".gradle/gradle.properties".text = ''
# org.gradle.console=verbose
# org.gradle.daemon.idletimeout=3600000
# '';
}