67 lines
1.3 KiB
Nix
67 lines
1.3 KiB
Nix
# Edit this configuration file to define what should be installed on
|
||
# your system. Help is available in the configuration.nix(5) man page
|
||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||
|
||
{ config, pkgs, ... }:
|
||
|
||
{
|
||
imports =
|
||
[ # Include the results of the hardware scan.
|
||
./ceph.nix
|
||
./hardware-configuration.nix
|
||
];
|
||
|
||
# Bootloader.
|
||
boot.loader.systemd-boot.enable = true;
|
||
boot.loader.efi.canTouchEfiVariables = true;
|
||
|
||
networking = {
|
||
hostName = "jeremiah"; # Define your hostname.
|
||
useDHCP = false;
|
||
defaultGateway = {
|
||
address = " 10.42.1.1";
|
||
interface = "enp68s0";
|
||
};
|
||
interfaces = {
|
||
enp68s0 = {
|
||
ipv4.addresses = [ {
|
||
address = "10.42.1.8";
|
||
prefixLength = 16;
|
||
} {
|
||
address = "10.42.100.1";
|
||
prefixLength = 16;
|
||
} ];
|
||
};
|
||
enp67s0 = {
|
||
ipv4.addresses = [ {
|
||
address = "10.201.1.2";
|
||
prefixLength = 16;
|
||
} ];
|
||
};
|
||
};
|
||
nameservers = [
|
||
"10.42.1.5"
|
||
];
|
||
};
|
||
greg = {
|
||
home = true;
|
||
tailscale.enable = true;
|
||
};
|
||
environment.systemPackages = with pkgs; [
|
||
btrfs-progs
|
||
];
|
||
|
||
fileSystems = {
|
||
"/nix" = {
|
||
fsType = "btrfs";
|
||
options = [ "subvol=nix" ];
|
||
device = "/dev/nvme0n1p1";
|
||
};
|
||
"/var" = {
|
||
fsType = "btrfs";
|
||
options = [ "subvol=var" ];
|
||
device = "/dev/nvme0n1p1";
|
||
};
|
||
};
|
||
}
|