This commit is contained in:
Lucy Hochkamp 2025-03-23 16:29:16 +01:00
parent db11846811
commit 67c2117563
No known key found for this signature in database
16 changed files with 652 additions and 274 deletions

View file

@ -14,6 +14,24 @@ in
xyno.cli.fish.enable = true;
xyno.cli.starship.enable = true;
security.sudo.enable = false;
nix.settings = {
trusted-users = lib.mkDefault [ "root" "@wheel" ];
allowed-users = lib.mkDefault [ "root" "@wheel" ];
auto-optimise-store = true;
};
nix.extraOptions = "experimental-features = nix-command flakes";
programs.direnv = {
enable = true;
nix-direnv.enable = true;
enableFishIntegration = true;
};
# https://github.com/NixOS/nixpkgs/issues/361592 needed for run0
security.pam.services.systemd-run0 = {};
environment.systemPackages = with pkgs; [
jq
bottom