feat(systemd): Auto-start wanted systemd services

This commit is contained in:
punkfairie 2024-10-27 19:41:02 -07:00
parent 0eec7622ab
commit 9e81e3a04c
Signed by: punkfairie
GPG key ID: 01823C057725C266
2 changed files with 8 additions and 0 deletions

View file

@ -15,6 +15,9 @@
targets.genericLinux.enable = true;
# Autostart wanted systemd services.
systemd.user.startServices = true;
home.packages = with pkgs; [
inputs.alejandra.defaultPackage.${system}
just

5
home/fish/default.nix Normal file
View file

@ -0,0 +1,5 @@
{...}: {
programs.fish = {
enable = true;
};
}