2024-02-12 23:35:55 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
home.username = "alice";
|
|
|
|
home.homeDirectory = "/home/alice";
|
2024-05-24 17:29:26 +02:00
|
|
|
home.stateVersion = "24.05";
|
2024-02-12 23:35:55 +01:00
|
|
|
home.packages = [ pkgs.hello ];
|
|
|
|
home.file.test.text = "test";
|
|
|
|
home.sessionVariables.EDITOR = "emacs";
|
|
|
|
programs.bash.enable = true;
|
|
|
|
programs.home-manager.enable = true;
|
2024-03-02 20:00:29 +01:00
|
|
|
|
|
|
|
# Enable a light-weight systemd service.
|
|
|
|
services.pueue.enable = true;
|
|
|
|
|
|
|
|
# We focus on sd-switch since that hopefully will become the default in the
|
|
|
|
# future.
|
|
|
|
systemd.user.startServices = "sd-switch";
|
2024-02-12 23:35:55 +01:00
|
|
|
}
|