mirror of
https://github.com/itme-brain/nixos.git
synced 2026-06-22 15:40:13 -04:00
updated
This commit is contained in:
parent
da8ee67320
commit
c5c4b97b36
6 changed files with 6 additions and 7 deletions
|
|
@ -13,7 +13,7 @@ in
|
|||
};
|
||||
|
||||
home.file.".config/bash" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink ./bash;
|
||||
source = ./bash;
|
||||
recursive = true;
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ in
|
|||
git-crypt
|
||||
];
|
||||
file.".config/git" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink ./git;
|
||||
source = ./git;
|
||||
recursive = true;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@
|
|||
with lib;
|
||||
let
|
||||
cfg = config.modules.user.neovim;
|
||||
nvimConfigPath = "${config.home.homeDirectory}/nixos/user/modules/neovim/nvim";
|
||||
|
||||
in
|
||||
{ options.modules.user.neovim = { enable = mkEnableOption "user.neovim"; };
|
||||
|
|
@ -34,7 +33,7 @@ in
|
|||
home.file.".config/nvim" = {
|
||||
# Keep Neovim's config writable. In a flake, `./nvim` is copied into
|
||||
# /nix/store before Home Manager can create an out-of-store symlink.
|
||||
source = config.lib.file.mkOutOfStoreSymlink nvimConfigPath;
|
||||
source = ./nvim;
|
||||
recursive = true;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit c50b9445bc365fa1d1f6aedb2e0fc34e7221e775
|
||||
Subproject commit 7f6fe43a9f70018bcbaea4f468729650a2606a15
|
||||
|
|
@ -16,7 +16,7 @@ in
|
|||
vim
|
||||
];
|
||||
file.".vim" = {
|
||||
source = config.lib.file.mkOutOfStoreSymlink ./vim;
|
||||
source = ./vim;
|
||||
recursive = true;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit c5b93f1225c1434e93f4be88bb1e8686e94add79
|
||||
Subproject commit e3b54f994a2bf14fa81d50351d341b12e1e287b7
|
||||
Loading…
Add table
Add a link
Reference in a new issue