Let’s say we have tree users each one with a copy of nix-channels. Since each user can use the command nix-channel each user could potentially change their main repo nixos to something else like unstable, but how do you ensure that every user has the same nixos channel as root?
├── Alice
│ └── .nix-channels
├── John
│ └── .nix-channels
└── Rob
└── .nix-channels
How do you guys keep sync between root and your user without the hassle of running sudo nix-channel --update && nix-channel --update?
oh right, but lets say i want to keep sync between my user and root, is there any option for configuration.nix that would enable symlinks between these files?