Skip to content

ES-Nix/es

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

es

Remote using this flake

nix run --impure 'github:ES-Nix/es/?dir=src/templates/nginx'

nix build --cores 8 --no-link --print-build-logs --print-out-paths --impure \
'github:ES-Nix/es/?dir=src/templates/pandoc-latex'

nix build --cores 8 --no-link --print-build-logs --print-out-paths --impure \
'github:ES-Nix/es/?dir=src/templates/memcached-static'
docker \
run \
--tty=true \
--interactive=true \
--rm=true \
docker.io/nixpkgs/nix-flakes \
bash

With a local clone

nix build --cores 6 --no-link --print-build-logs --print-out-paths --impure \
'./src/templates/pandoc-latex' \
'./src/templates/nginx' \
'./src/templates/nixos-build-vm-systemd-self-hosted-runner-for-gitHub-actions' \
'./src/templates/nixos-build-vm-kubernetes-self-hosted-runner-for-gitHub-actions' \
'./src/templates/nixos-tests-hello-systemd-service' \
'./src/templates/poetry2nix-basic-flask' \
'./src/templates/poetry2nix-basic' \
'./src/templates/qemu-virtual-machine-xfce-copy-paste-docker' \
'./src/templates/qemu-virtual-machine-xfce-copy-paste-docker-flask' \
'./src/templates/qemu-virtual-machine-xfce-copy-paste-k8s' \
'./src/templates/qemu-virtual-machine-xfce-copy-paste-docker-podman-flask' \
'./src/templates/qemu-virtual-machine-xfce-copy-paste-docker-python-script-and-package' \
'./src/templates/minimal-busybox-sandbox-shell' \
'./src/templates/nginx' \
'./src/templates/flake-utils-godot4' \
'./src/templates/nix-flakes-flake-utils-devShell' \
'./src/templates/nix-flakes-flake-utils-devShell-home-manager#homeConfigurations.x86_64-linux.vagrant.activationPackage'
nix build --cores 8 --no-link --print-build-logs --print-out-paths --impure \
'./src/templates/valkey-static' \
'./src/templates/redis-static' \
'./src/templates/nginx-static' \
'./src/templates/memcached-static' \
'./src/templates/memcached-static-cross'

Only in unstable it has the binfmt needed:

nix build --cores 6 --no-link --print-build-logs --print-out-paths --impure \
'./src/templates/binfmt-emulated-systems-hello' \
'./src/templates/binfmt-emulated-systems-docker' \
'./src/templates/binfmt-emulated-systems-python-docker-registry-images' \
'./src/templates/binfmt-emulated-riscv64-python-alpine-wheels-via-pip-and-docker'

It takes too long to build:

nix build --cores 6 --no-link --print-build-logs --print-out-paths --impure \
'./src/templates/nixos-iso-offline-install'

Only works in some different commit:

nix build --cores 6 --no-link --print-build-logs --print-out-paths --impure \
'./src/templates/docker-multiple-kernel-versions'

Only works in some different commit:

nix build --cores 6 --no-link --print-build-logs --print-out-paths --impure \
'./src/templates/bug-nixostest'

Cleaning/garbage collect:

nix \
store \
gc \
--verbose \
--option keep-outputs true \
--option keep-build-log true \
--option keep-derivations true \
--option keep-env-derivations true \
&& nix-collect-garbage --delete-old --verbose \
&& nix store optimise --verbose

Contributing

nix flake clone 'git+ssh://git@github.com/ES-Nix/es.git' --dest es \
&& cd es 1>/dev/null 2>/dev/null \
&& (direnv --version 1>/dev/null 2>/dev/null && direnv allow) \
|| nix develop $SHELL

Using

# https://xkcd.com/1654/
command -v curl || (command -v apt && sudo apt-get update && sudo apt-get install -y curl)
command -v curl || (command -v apk && sudo apk add --no-cache curl)


NIX_RELEASE_VERSION=2.10.2 \
&& time curl -L https://releases.nixos.org/nix/nix-"${NIX_RELEASE_VERSION}"/install | sh -s -- --no-daemon \
&& . "$HOME"/.nix-profile/etc/profile.d/nix.sh

export NIX_CONFIG='extra-experimental-features = nix-command flakes'

nix -vv registry pin nixpkgs github:NixOS/nixpkgs/ea4c80b39be4c09702b0cb3b42eab59e2ba4f24b

#command -v ssh-keygen || nix profile install nixpkgs#openssh
#command -v git || nix profile install nixpkgs#git

time \
nix \
--refresh \
run \
github:ES-nix/es#installStartConfigTemplate

zsh
nix flake show --json .# | jq '."templates"'
nix flake show github:ES-Nix/es
nix flake metadata github:ES-Nix/es
nix flake check github:ES-Nix/es
nix \
run \
--refresh \
github:ES-nix/es#sendToCacheInstallStartConfigTemplate

nix registry list
nix flake show templates

TODO: test all the templates!

nix flake show templates --json

nix \
--refresh \
run \
github:ES-nix/es#installStartConfigTemplate
rm -frv ~/.cache/nix/*
mkdir -pv ~/sandbox/sandbox \
&& cd ~/sandbox/sandbox
nix \
--refresh \
flake \
init \
--template \
github:ES-nix/es#"$(nix eval --impure --raw --expr 'builtins.currentSystem')".startConfig
nix shell nixpkgs#git -c sh -c 'git init && git add .'
checks.suportedSystem = self.packages.suportedSystem;


mkdir -pv hosts/minimal-example-nixos
# Precisa das variáveis de ambiente USER e HOME

# DIRECTORY_TO_CLONE=/home/"$USER"/.config/nixpkgs
DIRECTORY_TO_CLONE=/home/"$USER"/sandbox/sandbox

# export DUMMY_USER=alpine
export DUMMY_USER="$USER"
# export DUMMY_USER="$(id -un)"

# TODO: Mac
# export DUMMY_HOME="$HOME"
export DUMMY_HOME=/home/"$USER"

# export DUMMY_HOSTNAME=alpine316.localdomain
export DUMMY_HOSTNAME="$(hostname)"



BASE_HM_ATTR_NAME="$DUMMY_USER"-"$DUMMY_HOSTNAME"
FLAKE_ARCHITECTURE=$(nix eval --impure --raw --expr 'builtins.currentSystem').

HM_ATTR_FULL_NAME="$FLAKE_ARCHITECTURE"'"""'"$BASE_HM_ATTR_NAME"'"""'

FLAKE_ATTR="$DIRECTORY_TO_CLONE""#homeConfigurations.""$HM_ATTR_FULL_NAME"".activationPackage"

# "$(nix eval --impure --raw --expr 'builtins.currentSystem')"-
#HM_ATTR_FULL_NAME='"'"$DUMMY_USER"-"$DUMMY_HOSTNAME"'"'
#FLAKE_ATTR="$DIRECTORY_TO_CLONE""#homeConfigurations.""$HM_ATTR_FULL_NAME"".activationPackage"

nix profile install github:NixOS/nixpkgs/f5ffd5787786dde3a8bf648c7a1b5f78c4e01abb#git
 
time \
nix \
--option eval-cache false \
--option extra-trusted-public-keys binarycache-1:XiPHS/XT/ziMHu5hGoQ8Z0K88sa1Eqi5kFTYyl33FJg= \
--option extra-substituters https://playing-bucket-nix-cache-test.s3.amazonaws.com \
shell \
github:NixOS/nixpkgs/f5ffd5787786dde3a8bf648c7a1b5f78c4e01abb#{git,bashInteractive,coreutils,gnused,home-manager} \
--command \
bash <<-EOF
    echo $DIRECTORY_TO_CLONE
    rm -frv $DIRECTORY_TO_CLONE
    mkdir -pv $DIRECTORY_TO_CLONE

    cd $DIRECTORY_TO_CLONE
    
    nix \
    --refresh \
    flake \
    init \
    --template \
    github:ES-nix/es#"$(nix eval --impure --raw --expr 'builtins.currentSystem')".startConfig

    sed -i 's/username = ".*";/username = "'$DUMMY_USER'";/g' flake.nix \
    && sed -i 's/hostname = ".*";/hostname = "'"$DUMMY_HOSTNAME"'";/g' flake.nix \
    && git init \
    && git status \
    && git add . \
    && nix flake update --override-input nixpkgs github:NixOS/nixpkgs/f5ffd5787786dde3a8bf648c7a1b5f78c4e01abb \
    && git status \
    && git add .
    
    echo "$FLAKE_ATTR"
    # TODO: --max-jobs 0 \
    nix \
    --option eval-cache false \
    --option extra-trusted-public-keys binarycache-1:XiPHS/XT/ziMHu5hGoQ8Z0K88sa1Eqi5kFTYyl33FJg= \
    --option extra-substituters https://playing-bucket-nix-cache-test.s3.amazonaws.com \
    build \
    --keep-failed \
    --max-jobs 0 \
    --no-link \
    --print-build-logs \
    --print-out-paths \
    "$FLAKE_ATTR"
    
    export NIXPKGS_ALLOW_UNFREE=1 \
    && home-manager switch -b backuphm --impure --flake "$DIRECTORY_TO_CLONE"#"$HM_ATTR_FULL_NAME" \
    && home-manager generations
    
    #
    TARGET_SHELL='zsh' \
    && FULL_TARGET_SHELL=/home/"$DUMMY_USER"/.nix-profile/bin/"\$TARGET_SHELL" \
    && echo \
    && ls -al "\$FULL_TARGET_SHELL" \
    && echo \
    && echo "\$FULL_TARGET_SHELL" | sudo tee -a /etc/shells \
    && echo \
    && sudo \
          -k \
          usermod \
          -s \
          /home/"$DUMMY_USER"/.nix-profile/bin/"\$TARGET_SHELL" \
          "$DUMMY_USER"
    
EOF

TODO:

templates = import ./src/templates { system = "x86_64-linux"; } ;
templates.default = import ./src/templates;

packages.checkNixFormat = pkgsAllowUnfree.runCommand "check-nix-format" { } ''
    ${pkgsAllowUnfree.nixpkgs-fmt}/bin/nixpkgs-fmt --check ${./.}
    
    # For fix
    # find . -type f -iname '*.nix' -exec nixpkgs-fmt {} \;
    
    mkdir $out #sucess
'';

apps.${name} = flake-utils.lib.mkApp {
    inherit name;
    drv = packages.${name};
};

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published