chore: restructure home configuration files

This commit is contained in:
Ray Andrew 2025-11-27 12:27:46 -06:00
parent e30f811361
commit c1d49a8954
Signed by: rayandrew
SSH key fingerprint: SHA256:XYrYrxF0Z3A72n8P/p6mqPRNQZT22F88XcLsG+kX4xw
12 changed files with 9 additions and 12 deletions

View file

@ -7,14 +7,14 @@
{
imports = [
./email
./emacs
./emacs.nix
./git.nix
./gui.nix
./latex.nix
./neovim
./ssh
./shell
./tmux
./neovim.nix
./ssh.nix
./shell.nix
./tmux.nix
];
config = {

View file

@ -1,5 +1,4 @@
{
lib,
pkgs,
config,
user,

View file

@ -3,8 +3,6 @@
pkgs,
config,
inputs,
hm,
user,
...
}:
@ -12,7 +10,7 @@
imports = [
./i3
./kitty.nix
./ghostty
./ghostty.nix
];
options.custom.gui = with lib; {

View file

@ -1,7 +1,6 @@
{
config,
pkgs,
inputs,
lib,
...
}:

View file

@ -13,5 +13,6 @@
openssh
];
home.file.".ssh/config".source = config.lib.file.mkOutOfStoreSymlink "${dots}/home/ssh/config";
home.file.".ssh/config".source =
config.lib.file.mkOutOfStoreSymlink "${dots}/config/home/.ssh/config";
}

View file

@ -28,6 +28,6 @@
gitmux
];
xdg.configFile."tmux".source = config.lib.file.mkOutOfStoreSymlink "${dots}/home/tmux/config";
xdg.configFile."tmux".source = config.lib.file.mkOutOfStoreSymlink "${dots}/config/tmux";
};
}