chore: restructure home configuration files
This commit is contained in:
parent
e30f811361
commit
c1d49a8954
12 changed files with 9 additions and 12 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
lib,
|
||||
pkgs,
|
||||
config,
|
||||
user,
|
||||
|
|
|
|||
|
|
@ -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; {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
inputs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
}
|
||||
|
|
@ -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";
|
||||
};
|
||||
}
|
||||
Loading…
Reference in a new issue