1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00
home-manager/tests/integration/standalone/alice-home-specialisation.nix
2025-10-26 15:43:53 -05:00

14 lines
370 B
Nix

{
home.username = "alice";
home.homeDirectory = "/home/alice";
home.stateVersion = "25.05";
home.file.test.text = "test";
home.sessionVariables.EDITOR = "emacs";
programs.bash.enable = true;
programs.home-manager.enable = true;
specialisation.pueue.configuration = {
# Enable a light-weight systemd service.
services.pueue.enable = true;
};
}