egirls-nixos/configuration.nix
2024-02-25 12:51:45 -08:00

30 lines
645 B
Nix

{ pkgs, ... }: {
imports = [ ./hardware-configuration.nix ];
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
};
environment.systemPackages = with pkgs; [
kitty.terminfo
kakoune
vim
git
htop
wget
less
killall
];
boot.tmp.cleanOnBoot = true;
zramSwap.enable = true;
networking.hostName = "egirls";
networking.domain = "gay";
services.openssh.enable = true;
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIG6udktq60NydvPg6nnZpwxvQ6scC1HkqTZIG+ORt/HN"
];
system.stateVersion = "23.11";
}