quasar/configuration.nix

29 lines
657 B
Nix
Raw Normal View History

2024-08-22 09:37:38 +00:00
{ pkgs, ... }: {
imports = [
./hardware-configuration.nix
];
environment.systemPackages = with pkgs; [
neovim
];
2024-08-22 09:37:55 +00:00
programs.git = {
enable = true;
config = {
user = {
email = "khais.colin@gmail.com";
name = "Khaïs COLIN";
};
core.editor = "nvim";
};
};
2024-08-22 09:37:38 +00:00
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";
}