Open shirakami-chigusa opened 4 months ago
Since the nixos-rebuild switch
depends on git
, the test-untracked.txt
that has not been added will not be copied.
So when I ran home-manager as nixosModules, it correctly ignored test-untracked.txt
.
touch test-untraced.txt
sudo nixos-rebuild switch --flake .#foo
fd "test-untracked.txt" /nix/store/
# print nothing.
git add test-untraced.txt
sudo nixos-rebuild switch --flake .#foo
fd "test-untracked.txt" /nix/store/
# print /nix/store/8qwq3ic74whwc18yvwrzxmynlx7qh457-source/test-untracked.txt
The standalone home-manager switch
does not ignore test-untracked.txt.
- system: `"x86_64-linux"`
- host os: `Linux 6.6.37, NixOS, 24.05 (Uakari), 24.05.20240711.a046c12`
- multi-user?: `yes`
- sandbox: `yes`
- version: `nix-env (Nix) 2.18.4`
- nixpkgs: `/nix/store/2k0r4pk0hzjzk9iwyi61xc0z4qv791j9-source`
I also tested it on nix-darwin.
touch test-untraced.txt
darwin-rebuild switch --flake .
fd "test-untracked.txt" /nix/store/
# print nothing.
git add test-untraced.txt
darwin-rebuild switch --flake .
fd "test-untracked.txt" /nix/store/
# print /nix/store/wdx2n3l5vi72l9a2sqppzila41lg7icq-source/zxcvb.txt
- system: `"aarch64-darwin"`
- host os: `Darwin 23.5.0, macOS 14.5`
- multi-user?: `yes`
- sandbox: `no`
- version: `nix-env (Nix) 2.18.5`
- nixpkgs: `/nix/store/038zs5b21569pjv6v0dwhi6fd95jbzvx-source
Thank you for your contribution! I marked this issue as stale due to inactivity. Please be considerate of people watching this issue and receiving notifications before commenting 'I have this issue too'. We welcome additional information that will help resolve this issue. Please read the relevant sections below before commenting.
* If this is resolved, please consider closing it so that the maintainers know not to focus on this. * If this might still be an issue, but you are not interested in promoting its resolution, please consider closing it while encouraging others to take over and reopen an issue if they care enough. * If you know how to solve the issue, please consider submitting a Pull Request that addresses this issue.
* If you are also experiencing this issue, please add details of your situation to help with the debugging process. * If you know how to solve the issue, please consider submitting a Pull Request that addresses this issue.
Don't be afraid to manually close an issue, even if it holds valuable information. Closed issues stay in the system for people to search, read, cross-reference, or even reopen – nothing is lost! Closing obsolete issues is an important way to help maintainers focus their time and effort.
Are you following the right branch?
Is there an existing issue for this?
Issue description
I'm having trouble because files that are excluded with
.gitignore
are copied to/nix/store/12afkpbag242i7w9lb26bk**********-source/
.I confirmed by the following steps:
~/.config/home-manager/test-untracked.txt
.home-manager swith
withflake.nix
.~/.config/home-manager
itself is copied to/nix/store/12afkpbag242i7w9lb26bk**********-source/
as source tree.fd -IH "test-untracked.txt" /nix/store/
shows/nix/store/12afkpbag242i7w9lb26bk**********-source/test-untracked.txt
/nix/store/12afkpbag242i7w9lb26bk**********_source
includes untracked cache files.DS_Store
.git
.lsp/.cache
.clj-kondo/.cache
.test-untracked.txt
is also included.In particular,
.clj-kondo/.cache
takes a long time to copy because it is over 50MB and consists of over 10,000 small files. If.clj-kondo/.cache
exists,time home-manager switch
will be about30 seconds
. If it is removed it will be3 seconds
.These cache files are listed in
.gitignore
, buthome-manager switch
does not seem to use.gitignore
. Is there a source filter for the.config/home-manager
directory?Is this a flake issue rather than a home-manager issue? I think the
nixos-rebuild switch
does not copy untracked files, but thehome-manager switch
does copy them.Maintainer CC
No response
System information
I am not using
nix-darwin
. usinghome-manager switch
.