presentations/working-without-workspace/code/home-manager.nix

12 lines
174 B
Nix
Raw Normal View History

2023-04-06 14:07:08 +01:00
{ config, pkgs, ... }:
{
home.username = "opdavies";
home.homeDirectory = "/home/opdavies";
home.packages = with pkgs; [
php82
php82Packages.composer
];
};