diff options
author | System administrator <root@nixos.yourvserver.net> | 2023-01-06 18:18:24 +0000 |
---|---|---|
committer | System administrator <root@server1.vhack.eu> | 2023-01-06 18:20:30 +0000 |
commit | d522c778c6cb892ba2f7cc95474f60efded391b6 (patch) | |
tree | 02b210cd7666db6c42cb63b718da770c01c25f26 /configuration.nix | |
download | nixos-server-d522c778c6cb892ba2f7cc95474f60efded391b6.tar.gz nixos-server-d522c778c6cb892ba2f7cc95474f60efded391b6.zip |
Initial Commit
Diffstat (limited to 'configuration.nix')
-rw-r--r-- | configuration.nix | 26 |
1 files changed, 26 insertions, 0 deletions
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"; +} |