| 27 Oct 2025 |
GALLY | Demorei para ler isso aqui, mas enfim
Nix (ou cppnix para os enjoadinhos) é o interpretador da linguagem Nix, assim como o CPython é o interpretador de Python.
O NixOS é uma distribuição Linux, configurável via Nix.
Neste sentido, não existem distribuições de Nix, porque Nix não é um SO.
Pessoalmente eu não recomendo nenhuma porque nunca usei :) | 13:52:45 |
Pedro QB | mas vou te dizer, o MESA é bem melhor que o driver da AMD no Windows | 14:02:18 |
| ● Igor Café changed their profile picture. | 14:53:48 |
Marcos Fonseca | Docker só roda com privilégios elevados, não usar sudo no comando é só um truque de conveniência | 18:29:12 |
Marcos Fonseca | Pelo que lembro docker depende de um daemon, agora se fosse podman... | 18:55:25 |
Marcos Fonseca | Rapaz, eu tava por fora | 19:00:57 |
Marcos Fonseca | Em distro comum mesmo | 18:54:59 |
Marcos Fonseca | Vlw | 19:00:59 |
Marcos Fonseca | Docker 100% sem root? Como é isso? | 18:54:44 |
| Ratoncio Business changed their display name from Ratoncio Ratlock to Ratoncio Blogs. | 22:34:39 |
| 28 Oct 2025 |
Ratoncio Business | easy | 00:09:41 |
Ratoncio Business | In reply to Marcos Fonseca Rapaz, eu tava por fora { config, pkgs, ... }: { virtualisation = { docker = { enable = true; rootless = { enable = true; setSocketVariable = true; daemon.settings = { dns = [ "185.228.168.168" "185.228.169.168" ]; registry-mirrors = [ "https://mirror.gcr.io" ]; }; }; }; }; } | 00:09:39 |
Marcos Fonseca | In reply to Ratoncio Blogs { config, pkgs, ... }: { virtualisation = { docker = { enable = true; rootless = { enable = true; setSocketVariable = true; daemon.settings = { dns = [ "185.228.168.168" "185.228.169.168" ]; registry-mirrors = [ "https://mirror.gcr.io" ]; }; }; }; }; } vlw | 00:52:58 |
Ratoncio Business | telegram nego | 02:42:56 |
Hugo Ribeiro |  Download image.jpeg | 02:29:18 |
Hugo Ribeiro | In reply to Ratoncio Blogs telegram nego { config, pkgs, ... }: {
virtualisation = {
docker = {
enable = true;
rootless = {
enable = true;
setSocketVariable = true;
daemon.settings = {
dns = [ "185.228.168.168" "185.228.169.168" ];
registry-mirrors = [ "https://mirror.gcr.io" ];
};
};
};
};
} | 04:12:15 |
Hugo Ribeiro | In reply to Ratoncio Blogs telegram nego mas era so pelo meme mesmo, por eu prefiro quase sem indentaçao alguma 😉
{
virtualisation.docker.enable = true;
virtualisation.docker.rootless.enable = true;
virtualisation.docker.rootless.setSocketVariable = true;
virtualisation.docker.rootless.daemon.settings = {
dns = [ "185.228.168.168" "185.228.169.168" ];
registry-mirrors = [ "https://mirror.gcr.io" ];
}
} | 04:19:56 |
PedroHLC | 1 em cada 8 comentários é útil | 12:14:07 |
PedroHLC | 1 em cada 20 é criticamente útil | 12:14:18 |
PedroHLC | E eu gosto de olhar as sugestões de nitpicking dele também | 12:18:20 |
PedroHLC | O pior é arquitetura e devops | 12:20:17 |
PedroHLC | Ele é bom também para dizer que vc esqueceu de variar alguma coisa num copy&paste da vida | 12:19:14 |
PedroHLC | Essa porra gera um ruído triste | 12:13:37 |
PedroHLC | A gente usa em todo PR do trampo, o ruído é bem bem triste, mas eu não desligaria ele por causa desses 1 em 20 que ele pega coisa que nenhum humano pegou e que derrubaria um castelo | 12:17:49 |
Filipe | Gente | 15:04:44 |
Filipe | esse é o comando que eu usei | 15:05:43 |
Filipe | ### Installing NixOS ###
Pseudo-terminal will not be allocated because stdin is not a terminal.
Warning: Permanently added '192.168.10.197' (ED25519) to the list of known hosts.
installing the boot loader...
setting up /etc...
Running in a chroot, enabling --graceful.
Created "/boot/EFI".
Created "/boot/EFI/systemd".
Created "/boot/EFI/BOOT".
Created "/boot/loader".
Created "/boot/loader/keys".
Created "/boot/loader/entries".
Created "/boot/EFI/Linux".
Copied "/nix/store/f8plklbbq3gwkq1wfq89i3f4wy8rabzn-systemd-258/lib/systemd/boot/efi/systemd-bootx64.efi" to "/boot/EFI/systemd/systemd-bootx64.efi".
Copied "/nix/store/f8plklbbq3gwkq1wfq89i3f4wy8rabzn-systemd-258/lib/systemd/boot/efi/systemd-bootx64.efi" to "/boot/EFI/BOOT/BOOTX64.EFI".
Mount point '/boot' which backs the random seed file is world accessible, which is a security hole!
Random seed file '/boot/loader/.#bootctlrandom-seed20812cea5ae42bd7' is world accessible, which is a security hole!
Random seed file /boot/loader/random-seed successfully written (32 bytes).
Created EFI boot entry "Linux Boot Manager".
installation finished!
### Rebooting ### | 15:06:29 |
Filipe | waiting for device /dev/disk/by-partlabel/disk-sda-root appear time out waiting | 15:05:14 |
Filipe | e aqui o disko:
{
disko.devices = {
disk.sda = {
device = "/dev/sda";
type = "disk";
content = {
type = "gpt";
partitions = {
boot = {
size = "1G";
type = "EF00";
name = "boot";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
name = "root";
content = {
type = "btrfs";
mountpoint = "/";
extraArgs = ["-L" "nixos"];
subvolumes = {
"@root" = {mountpoint = "/";};
"@home" = {mountpoint = "/home";};
"@nix" = {mountpoint = "/nix";};
"@log" = {mountpoint = "/var/log";};
"@cache" = {mountpoint = "/var/cache";};
};
};
};
};
};
};
};
} | 15:06:06 |
Filipe | alguem pode me dá um help no primeiro uso do nix anywhere? | 15:04:54 |