feat(users/transcaffeine): source vimrc from dotfiles repository

This commit is contained in:
2025-12-20 21:09:46 +01:00
parent 2f2171b6fa
commit ad19ba8806
2 changed files with 10 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
./darkman.nix
./git.nix
./gnupg.nix
./vim.nix
];
home.stateVersion = "24.11";

View File

@@ -0,0 +1,9 @@
{ inputs, lib, ... }:
let
dotfileRepo = inputs.dotfiles;
in {
programs.vim = {
enable = true;
extraConfig = lib.readFile (dotfileRepo + "/config/vim/vimrc");
};
}