Compare commits

..
Author SHA1 Message Date
652550ab41
system: don't enable sudo-rs
it's somewhat pointless, especially with run0 being more useful
(and it's already there by default)

this setting also seems to ignore `nixowos.allowAddingPackages`
2026-09-02 11:06:58 -07:00
04b3c07941
shell: partially revert "add nh over nixos-rebuild alias"
This reverts commit a984633ee3.

I actually prefer lix's multiline-with-logs output over nom,
so nh is not much better to use over nixos-rebuild-ng

I am still keeping around nh though, for eg `nh search`
2026-09-02 11:06:05 -07:00
2 changed files with 2 additions and 2 deletions

View file

@ -52,6 +52,8 @@ in
environment.shellAliases = {
# make nix-shell preserve the user's $SHELL
nix-shell = /* sh */ ''nix-shell --command "export SHELL=$SHELL; $SHELL"'';
nixos-rebuild = /* sh */ "nixos-rebuild --ask-sudo-password";
};
environment.systemPackages = lib.mkIf config.nixowos.allowAddingPackages cfg.extraPackages;

View file

@ -69,8 +69,6 @@ in
memoryPercent = 100;
};
security.sudo-rs.enable = lib.mkDefault true;
services.openssh = {
enable = lib.mkDefault true;