Compare commits
3 commits
70474fac8e
...
c910b9d8f1
Author | SHA1 | Date | |
---|---|---|---|
c910b9d8f1 | |||
466f0297b8 | |||
4835d30b62 |
8 changed files with 119 additions and 2 deletions
|
@ -34,6 +34,8 @@
|
||||||
"100.64.0.1" = [ "elnu" ];
|
"100.64.0.1" = [ "elnu" ];
|
||||||
"100.64.0.2" = [ "elnuhub" ];
|
"100.64.0.2" = [ "elnuhub" ];
|
||||||
"100.64.0.3" = [ "elnudrop" ];
|
"100.64.0.3" = [ "elnudrop" ];
|
||||||
|
"100.64.0.4" = [ "pang13" ];
|
||||||
|
"100.64.0.5" = [ "elnucentre" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -167,4 +167,28 @@ in
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
elnucentre = lib.nixosSystem {
|
||||||
|
inherit system;
|
||||||
|
specialArgs = {
|
||||||
|
inherit user;
|
||||||
|
};
|
||||||
|
modules = configImports ++ [
|
||||||
|
./elnucentre
|
||||||
|
{
|
||||||
|
networking.hostName = "elnucentre";
|
||||||
|
}
|
||||||
|
home-manager.nixosModules.home-manager {
|
||||||
|
home-manager = {
|
||||||
|
useUserPackages = true;
|
||||||
|
extraSpecialArgs = { inherit user; };
|
||||||
|
users.${user} = {
|
||||||
|
imports = hmImports ++ [
|
||||||
|
(import ./elnucentre/home.nix)
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
26
hosts/elnucentre/default.nix
Normal file
26
hosts/elnucentre/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{ config, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./hardware-configuration.nix
|
||||||
|
./modules/ssh.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
services.tailscale.enable = true;
|
||||||
|
networking.firewall = {
|
||||||
|
checkReversePath = "loose";
|
||||||
|
trustedInterfaces = [ "tailscale0" ];
|
||||||
|
allowedUDPPorts = [ config.services.tailscale.port ];
|
||||||
|
};
|
||||||
|
|
||||||
|
boot.loader = {
|
||||||
|
efi = {
|
||||||
|
canTouchEfiVariables = true;
|
||||||
|
efiSysMountPoint = "/boot";
|
||||||
|
};
|
||||||
|
grub = {
|
||||||
|
efiSupport = true;
|
||||||
|
device = "nodev";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
38
hosts/elnucentre/hardware-configuration.nix
Normal file
38
hosts/elnucentre/hardware-configuration.nix
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
|
# and may be overwritten by future invocations. Please make changes
|
||||||
|
# to /etc/nixos/configuration.nix instead.
|
||||||
|
{ config, lib, pkgs, modulesPath, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports =
|
||||||
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||||
|
];
|
||||||
|
|
||||||
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
||||||
|
boot.initrd.kernelModules = [ ];
|
||||||
|
boot.kernelModules = [ "kvm-intel" ];
|
||||||
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
|
fileSystems."/" =
|
||||||
|
{ device = "/dev/disk/by-label/nixos";
|
||||||
|
fsType = "ext4";
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems."/boot" =
|
||||||
|
{ device = "/dev/disk/by-label/boot";
|
||||||
|
fsType = "vfat";
|
||||||
|
};
|
||||||
|
|
||||||
|
swapDevices = [ ];
|
||||||
|
|
||||||
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||||
|
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||||
|
# still possible to use this option, but it's recommended to use it in conjunction
|
||||||
|
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
||||||
|
networking.useDHCP = lib.mkDefault true;
|
||||||
|
# networking.interfaces.eno1.useDHCP = lib.mkDefault true;
|
||||||
|
|
||||||
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
|
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
||||||
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
|
}
|
13
hosts/elnucentre/home.nix
Normal file
13
hosts/elnucentre/home.nix
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{ lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
../../modules/bash
|
||||||
|
../../modules/neovim
|
||||||
|
];
|
||||||
|
# Disable greeter, which is getting run twice somehow
|
||||||
|
programs.bash = with import ../../modules/bash/bashrc.nix; {
|
||||||
|
bashrcExtra = lib.mkForce bashrcExtra;
|
||||||
|
profileExtra = greeter;
|
||||||
|
};
|
||||||
|
}
|
11
hosts/elnucentre/modules/ssh.nix
Normal file
11
hosts/elnucentre/modules/ssh.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ user, ... }:
|
||||||
|
|
||||||
|
let keys = [
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEQNlGt62dBMojVCX7EUIia+wfSDfLzV4YCPi8SZ2xrp elnu@elnu.com" # elnu
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH62YpVC8GaZXE8CHfyl1yAXXdlUSGNkyE95whYdUpct elnu@elnu.com" # pang13
|
||||||
|
]; in
|
||||||
|
{
|
||||||
|
services.openssh.enable = true;
|
||||||
|
users.users.root.openssh.authorizedKeys.keys = keys;
|
||||||
|
users.users.${user}.openssh.authorizedKeys.keys = keys;
|
||||||
|
}
|
|
@ -10,7 +10,6 @@ in
|
||||||
#../modules/emacs
|
#../modules/emacs
|
||||||
../modules/fcitx5
|
../modules/fcitx5
|
||||||
../modules/firefox
|
../modules/firefox
|
||||||
../modules/git
|
|
||||||
../modules/i3
|
../modules/i3
|
||||||
../modules/neovim
|
../modules/neovim
|
||||||
../modules/picom
|
../modules/picom
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
{ user, ... }:
|
{ user, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
imports = [
|
||||||
|
../modules/git
|
||||||
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
username = "${user}";
|
username = "${user}";
|
||||||
homeDirectory = "/home/${user}";
|
homeDirectory = "/home/${user}";
|
||||||
|
@ -10,4 +14,4 @@
|
||||||
|
|
||||||
stateVersion = "22.05";
|
stateVersion = "22.05";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue