mirror of
https://github.com/nix-community/home-manager.git
synced 2026-06-05 21:02:51 +00:00
files: prefix relative path literal with './'
Fixes the `warn-short-path-literals` warning: warning: relative path literal 'lib/file-type.nix' should be prefixed with '.' for clarity Nix recommends prefixing relative path literals with './' to distinguish them from other path forms.
This commit is contained in:
committed by
Matthieu Coudron
parent
3c7524c683
commit
d401492e2a
@@ -34,7 +34,7 @@ let
|
||||
|
||||
inherit
|
||||
(
|
||||
(import lib/file-type.nix {
|
||||
(import ./lib/file-type.nix {
|
||||
inherit homeDirectory lib pkgs;
|
||||
})
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user