Files
home-manager/system-environment/config.nix
Nina Chlóe Kassandra Reiß 64817ef4ff Add ssh and git configuration
2026-04-20 15:59:52 +02:00

17 lines
185 B
Nix

{ pkgs, lib, ... }:
let
profile = import ../profile.nix;
in
{
imports = [
./file-system.nix
./media.nix
];
home.packages = with pkgs; [
gnumake
python3
];
}