From d522c778c6cb892ba2f7cc95474f60efded391b6 Mon Sep 17 00:00:00 2001 From: System administrator Date: Fri, 6 Jan 2023 18:18:24 +0000 Subject: Initial Commit --- configuration.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 configuration.nix (limited to 'configuration.nix') diff --git a/configuration.nix b/configuration.nix new file mode 100644 index 0000000..d58ee8f --- /dev/null +++ b/configuration.nix @@ -0,0 +1,26 @@ +{ pkgs, ... }: { + imports = [ + ./hardware-configuration.nix + ./networking.nix # generated at runtime by nixos-infect + + ]; + + boot.cleanTmpDir = true; + zramSwap.enable = true; + networking.hostName = "nixos"; + networking.domain = "yourvserver.net"; + services.openssh.enable = true; + users.users.root.openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK2mYuiOuIb13E3wJRYPHOFN/dR5ySFozG2I/18HBSRJ dt@DESKTOP-IDOHVE" + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIG63gxw8JePmrC8Fni0pLV4TnPBhCPmSV9FYEdva+6s7 sils" + ]; + + environment.systemPackages = with pkgs; [ + neovim + zsh + btrfs-progs + git + ]; + + system.stateVersion = "22.11"; +} -- cgit 1.4.1