Nixfiles! :3
0

Configure Feed

Select the types of activity you want to include in your feed.

DOAS!


Signed-off-by: MLC Bloeiman <mar@strawmelonjuice.com>

MLC Bloeiman (May 4, 2026, 8:51 PM UTC) 982f5fa6 174086ac

+31 -2
+31 -2
hosts/frigometri/configuration.nix
··· 7 7 }: 8 8 { 9 9 imports = [ (modulesPath + "/virtualisation/proxmox-lxc.nix") ]; 10 - 10 + 11 11 nix.settings = { 12 - experimental-features = [ "nix-command" "flakes" ]; 12 + experimental-features = [ 13 + "nix-command" 14 + "flakes" 15 + ]; 13 16 sandbox = false; 14 17 }; 15 18 networking.firewall.enable = false; ··· 184 187 archive_command = "/bin/true"; 185 188 }; 186 189 }; 190 + programs.zsh.enable = true; 187 191 environment.systemPackages = with pkgs; [ 192 + git 193 + jj 194 + podman-compose 195 + podman-tui 196 + polkit_gnome 197 + wayland-utils 198 + wl-clipboard 199 + xclip 200 + xwayland-satellite 201 + # coreutils 202 + uutils-coreutils-noprefix 203 + git 188 204 neovim 189 205 git 190 206 podman 191 207 podman-compose 208 + ]; 209 + security.doas.enable = true; 210 + security.sudo.enable = false; 211 + security.doas.extraRules = [ 212 + { 213 + users = [ 214 + "mar" 215 + "root" 216 + ]; 217 + keepEnv = true; 218 + # In a server this may not be wise ;) 219 + # noPass = true; 220 + } 192 221 ]; 193 222 }