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 | |
download | nixos-server-d522c778c6cb892ba2f7cc95474f60efded391b6.tar.gz nixos-server-d522c778c6cb892ba2f7cc95474f60efded391b6.zip |
Initial Commit
-rw-r--r-- | configuration.nix | 26 | ||||
-rw-r--r-- | hardware-configuration.nix | 9 | ||||
-rw-r--r-- | networking.nix | 30 |
3 files changed, 65 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"; +} diff --git a/hardware-configuration.nix b/hardware-configuration.nix new file mode 100644 index 0000000..e8756e4 --- /dev/null +++ b/hardware-configuration.nix @@ -0,0 +1,9 @@ +{ modulesPath, ... }: +{ + imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; + boot.loader.grub.device = "/dev/vda"; + boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ]; + boot.initrd.kernelModules = [ "nvme" "btrfs" ]; + fileSystems."/" = { device = "/dev/vda3"; fsType = "ext4"; }; + +} diff --git a/networking.nix b/networking.nix new file mode 100644 index 0000000..9b254e0 --- /dev/null +++ b/networking.nix @@ -0,0 +1,30 @@ +{ lib, ... }: { + # This file was populated at runtime with the networking + # details gathered from the active system. + networking = { + nameservers = [ "8.8.8.8" + ]; + defaultGateway = "89.58.56.1"; + defaultGateway6 = "fe80::1"; + dhcpcd.enable = false; + usePredictableInterfaceNames = lib.mkForce false; + interfaces = { + eth0 = { + ipv4.addresses = [ + { address="89.58.58.33"; prefixLength=22; } + ]; + ipv6.addresses = [ + { address="2a03:4000:6a:3f3:6422:6dff:fe82:939b"; prefixLength=64; } +{ address="fe80::6422:6dff:fe82:939b"; prefixLength=64; } + ]; + ipv4.routes = [ { address = "89.58.56.1"; prefixLength = 32; } ]; + ipv6.routes = [ { address = "fe80::1"; prefixLength = 128; } ]; + }; + + }; + }; + services.udev.extraRules = '' + ATTR{address}=="66:22:6d:82:93:9b", NAME="eth0" + + ''; +} |