os/platforms/darwin/home.nix

9 lines
177 B
Nix
Raw Permalink Normal View History

2024-10-29 08:12:05 +01:00
{config, lib, pkgs, inputs, os, ...}: {
home.username = "stephans";
home.homeDirectory = "/Users/stephans";
home.packages = with pkgs; [
2024-11-18 10:49:43 +01:00
cyberduck
2024-10-29 08:12:05 +01:00
];
2024-11-18 10:49:43 +01:00
}