You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nixos-config/hosts/nyx/configuration.nix

32 lines
801 B
Nix

{ config, pkgs, ...}:
let
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz";
in {
imports = [
./hardware-configuration.nix
(import "${home-manager}/nixos")
../../common.nix
../../hostwinds-grub.nix
];
ashe.common.user = "rose";
ashe.common.userFullName = "Ashelyn Rose";
ashe.common.password = "[REDACTED]";
ashe.common.userPackages = with pkgs; [
neofetch
];
networking.hostName = "nyx"; # Define your hostname.
networking.wireless.enable = false;
networking.networkmanager.enable = false;
networking.interfaces.ens3.ipv4.addresses = [ {
address = "104.168.211.198";
prefixLength = 16;
} ];
networking.defaultGateway = "104.168.218.1";
networking.nameservers = [ "8.8.8.8" ];
}