blob: b0b126c6d4abe47d0c2f25b83a253df440f0e0ef (
plain)
1
2
3
4
5
6
7
8
9
10
|
# Here we extend the HM user defined in `home/default.nix`. All the global HM
# stuff is defined in there.
{...}: {
home-manager.users.linus = {
imports = [
./iterm2
./noweb
];
};
}
|