feat(systemd): Auto-start wanted systemd services

This commit is contained in:
punkfairie 2024-10-27 19:41:02 -07:00
parent a5525a4c72
commit 5074f81f60
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;
};
}