systems/profiles/minimal.nix

34 lines
459 B
Nix

{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkDefault;
in
{
environment.pathsToLink = [ "/share/zsh" ];
environment.systemPackages = with pkgs; [
curl
git
vim
wget
];
networking.hostName = "${config.machine.hostName}";
nix.package = pkgs.lixPackageSets.stable.lix;
nix.settings = {
experimental-features = [
"nix-command"
"flakes"
];
};
nixpkgs.overlays = [
(import ../overlays)
];
}