fix: docker rootless now works due to /etc/hosts permissions change

This commit is contained in:
2026-03-07 15:46:09 -05:00
parent 068eba7c26
commit 22d0e34139
4 changed files with 62 additions and 22 deletions
+2 -5
View File
@@ -8,7 +8,6 @@
imports =
[ # Include the results of the hardware scan.
/etc/nixos/hardware-configuration.nix
<home-manager/nixos>
];
## Commented out as defined at the end of the page
@@ -94,9 +93,7 @@
linger = true;
extraGroups = [ "networkmanager" "wheel" "docker" "dialout" ];
};
home-manager.users.l-wyatt = import /home/l-wyatt/.config/home-manager/home.nix;
nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
@@ -157,7 +154,7 @@
services.blueman.enable = true;
# Allow /etc/hosts to be modified without system rebuild
environment.etc.hosts.mode = "0700";
environment.etc.hosts.mode = "0644";
# Enable flakes and extras
nix.settings.experimental-features = [ "nix-command" "flakes" ];