nixos/base.nix

30 lines
615 B
Nix
Raw Normal View History

2024-12-18 18:19:37 -06:00
{ pkgs, ... }:
{
services.openssh.enable = true;
security.sudo.wheelNeedsPassword = false;
users.mutableUsers = false;
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
file
vim
curl
wget
git
tmux
psmisc
];
environment.variables.EDITOR = "vim";
2025-02-24 14:28:00 -06:00
boot.binfmt.registrations.appimage = {
wrapInterpreterInShell = false;
interpreter = "${pkgs.appimage-run}/bin/appimage-run";
recognitionType = "magic";
offset = 0;
mask = ''\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\xff'';
magicOrExtension = ''\x7fELF....AI\x02'';
};
2024-12-18 18:19:37 -06:00
}