quasar/configuration.nix

19 lines
475 B
Nix
Raw Normal View History

2024-08-22 09:37:38 +00:00
{ pkgs, ... }: {
imports = [
./hardware-configuration.nix
];
environment.systemPackages = with pkgs; [
neovim
git
];
boot.tmp.cleanOnBoot = true;
zramSwap.enable = true;
networking.hostName = "quasar";
networking.domain = "";
services.openssh.enable = true;
users.users.root.openssh.authorizedKeys.keys = [''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKQNIDqvhcfLKIDJybVI0o32CSDZpBXxjRxXj6OVQ93E khais@nixos'' ];
system.stateVersion = "23.11";
}