Compare commits

..

No commits in common. "c910b9d8f1828795fbb6957f794147c057675fc0" and "70474fac8e626f3dd786a74bef7adb80c0ce0083" have entirely different histories.

8 changed files with 2 additions and 119 deletions

View file

@ -34,8 +34,6 @@
"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" ];
}; };
}; };

View file

@ -167,28 +167,4 @@ 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)
];
};
};
}
];
};
} }

View file

@ -1,26 +0,0 @@
{ 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";
};
};
}

View file

@ -1,38 +0,0 @@
# 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;
}

View file

@ -1,13 +0,0 @@
{ 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;
};
}

View file

@ -1,11 +0,0 @@
{ 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;
}

View file

@ -10,6 +10,7 @@ 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

View file

@ -1,10 +1,6 @@
{ user, ... }: { user, ... }:
{ {
imports = [
../modules/git
];
home = { home = {
username = "${user}"; username = "${user}";
homeDirectory = "/home/${user}"; homeDirectory = "/home/${user}";
@ -14,4 +10,4 @@
stateVersion = "22.05"; stateVersion = "22.05";
}; };
} }