mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
15 lines
370 B
Nix
15 lines
370 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.username = "alice";
|
|
home.homeDirectory = "/home/alice";
|
|
home.stateVersion = "24.11";
|
|
home.packages = [ pkgs.hello ];
|
|
home.file.test.text = "test";
|
|
home.sessionVariables.EDITOR = "emacs";
|
|
programs.bash.enable = true;
|
|
programs.home-manager.enable = true;
|
|
|
|
# Enable a light-weight systemd service.
|
|
services.pueue.enable = true;
|
|
}
|