Add back Lenovo laptop as Redmond
This commit is contained in:
parent
c188a30dc2
commit
95044ea50b
|
@ -39,6 +39,7 @@
|
||||||
firefly = mkNixos [ ./hosts/firefly/system ];
|
firefly = mkNixos [ ./hosts/firefly/system ];
|
||||||
shuttleworth = mkNixos [ ./hosts/shuttleworth/system ];
|
shuttleworth = mkNixos [ ./hosts/shuttleworth/system ];
|
||||||
lacros = mkNixos [ ./hosts/lacros/system ];
|
lacros = mkNixos [ ./hosts/lacros/system ];
|
||||||
|
redmond = mkNixos [ ./hosts/redmond/system ];
|
||||||
|
|
||||||
# Servers
|
# Servers
|
||||||
cyberspark = mkNixos [ ./hosts/cyberspark/system ];
|
cyberspark = mkNixos [ ./hosts/cyberspark/system ];
|
||||||
|
@ -50,6 +51,7 @@
|
||||||
"jimbo@firefly" = mkHome [ ./hosts/firefly/home ] nixpkgs.legacyPackages.x86_64-linux;
|
"jimbo@firefly" = mkHome [ ./hosts/firefly/home ] nixpkgs.legacyPackages.x86_64-linux;
|
||||||
"jimbo@shuttleworth" = mkHome [ ./hosts/shuttleworth/home ] nixpkgs.legacyPackages.aarch64-linux;
|
"jimbo@shuttleworth" = mkHome [ ./hosts/shuttleworth/home ] nixpkgs.legacyPackages.aarch64-linux;
|
||||||
"jimbo@lacros" = mkHome [ ./hosts/lacros/home ] nixpkgs.legacyPackages.x86_64-linux;
|
"jimbo@lacros" = mkHome [ ./hosts/lacros/home ] nixpkgs.legacyPackages.x86_64-linux;
|
||||||
|
"jimbo@redmond" = mkHome [ ./hosts/redmond/home ] nixpkgs.legacyPackages.x86_64-linux;
|
||||||
|
|
||||||
"jimbo@cyberspark" = mkHome [ ./hosts/cyberspark/home ] nixpkgs.legacyPackages.x86_64-linux;
|
"jimbo@cyberspark" = mkHome [ ./hosts/cyberspark/home ] nixpkgs.legacyPackages.x86_64-linux;
|
||||||
"jimbo@bomberman" = mkHome [ ./hosts/bomberman/home ] nixpkgs.legacyPackages.aarch64-linux;
|
"jimbo@bomberman" = mkHome [ ./hosts/bomberman/home ] nixpkgs.legacyPackages.aarch64-linux;
|
||||||
|
|
24
hosts/redmond/home/default.nix
Normal file
24
hosts/redmond/home/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{ config, nur, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
# Apps and programs
|
||||||
|
../../../modules/home
|
||||||
|
../../../modules/home/users
|
||||||
|
../../../modules/home/files
|
||||||
|
../../../modules/home/settings
|
||||||
|
../../../modules/home/programs
|
||||||
|
../../../modules/home/programs/misc/production
|
||||||
|
../../../modules/home/programs/misc/gaming/launchers
|
||||||
|
../../../modules/home/programs/misc/remote-desktop
|
||||||
|
../../../modules/home/sway
|
||||||
|
../../../modules/home/utils
|
||||||
|
|
||||||
|
# Misc
|
||||||
|
../../../overlays
|
||||||
|
../../../variables
|
||||||
|
../../../variables/look/colors/green
|
||||||
|
|
||||||
|
# Imports
|
||||||
|
nur.nixosModules.nur
|
||||||
|
];
|
||||||
|
}
|
1
hosts/redmond/id_ed25519.pub
Normal file
1
hosts/redmond/id_ed25519.pub
Normal file
|
@ -0,0 +1 @@
|
||||||
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIG9uITpyw5WgxT7UnswueFtyWxAqQCZv4h9DfcDkr+kn jimbo@nixos
|
27
hosts/redmond/system/default.nix
Normal file
27
hosts/redmond/system/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ config, lib, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./hardware
|
||||||
|
|
||||||
|
# Apps and programs
|
||||||
|
../../../modules/system
|
||||||
|
../../../modules/system/accounts
|
||||||
|
../../../modules/system/desktop
|
||||||
|
../../../modules/system/programs
|
||||||
|
../../../modules/system/services
|
||||||
|
|
||||||
|
# Devices and hardware
|
||||||
|
../../../modules/system/devices
|
||||||
|
../../../modules/system/devices/boot/systemd
|
||||||
|
../../../modules/system/devices/networking/wireless
|
||||||
|
../../../modules/system/devices/networking/firewall/pc
|
||||||
|
../../../modules/system/devices/networking/wireguard/pc
|
||||||
|
|
||||||
|
# Extras
|
||||||
|
../../../overlays
|
||||||
|
../../../variables
|
||||||
|
];
|
||||||
|
|
||||||
|
networking.hostName = "redmond";
|
||||||
|
networking.wireguard.interfaces."${config.ips.wgInt}".ips = [ "${config.ips.wgSpan}.20/24" ];
|
||||||
|
}
|
38
hosts/redmond/system/hardware/default.nix
Normal file
38
hosts/redmond/system/hardware/default.nix
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
{ config, lib, pkgs, modulesPath, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||||||
|
];
|
||||||
|
|
||||||
|
boot = {
|
||||||
|
initrd = {
|
||||||
|
availableKernelModules = [
|
||||||
|
"xhci_pci"
|
||||||
|
"ahci"
|
||||||
|
"ehci_pci"
|
||||||
|
"sd_mod"
|
||||||
|
"sr_mod"
|
||||||
|
"sdhci_pci"
|
||||||
|
"rtsx_usb_sdmmc"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
kernelModules = [ "kvm-amd" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems = {
|
||||||
|
"/" = {
|
||||||
|
device = "/dev/disk/by-uuid/c0fe8419-88f9-48a0-8c5b-acd4c11f8037";
|
||||||
|
fsType = "ext4";
|
||||||
|
};
|
||||||
|
"/boot" = {
|
||||||
|
device = "/dev/disk/by-uuid/BF2B-9AE0";
|
||||||
|
fsType = "vfat";
|
||||||
|
options = [ "fmask=0022" "dmask=0022" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
networking.useDHCP = lib.mkDefault true;
|
||||||
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
|
}
|
BIN
modules/home/files/assets/wallpapers/leaves/1.png
Normal file
BIN
modules/home/files/assets/wallpapers/leaves/1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 MiB |
BIN
modules/home/files/assets/wallpapers/leaves/2.png
Normal file
BIN
modules/home/files/assets/wallpapers/leaves/2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 MiB |
BIN
modules/home/files/assets/wallpapers/leaves/3.png
Normal file
BIN
modules/home/files/assets/wallpapers/leaves/3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 MiB |
|
@ -10,9 +10,9 @@
|
||||||
listenPort = 51820;
|
listenPort = 51820;
|
||||||
privateKey = config.secrets.wgClientPriv;
|
privateKey = config.secrets.wgClientPriv;
|
||||||
peers = [
|
peers = [
|
||||||
{ # 0.0.0.0 makes wg act like a traditional VPN
|
{
|
||||||
publicKey = config.secrets.wgServerPub;
|
publicKey = config.secrets.wgServerPub;
|
||||||
allowedIPs = [ "0.0.0.0/0" ];
|
allowedIPs = [ "${config.ips.wgSpan}.0/24" ];
|
||||||
endpoint = "sv.${config.secrets.jimDomain}:51820";
|
endpoint = "sv.${config.secrets.jimDomain}:51820";
|
||||||
persistentKeepalive = 25;
|
persistentKeepalive = 25;
|
||||||
}
|
}
|
||||||
|
|
22
variables/look/colors/green/default.nix
Normal file
22
variables/look/colors/green/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{ lib, config, ... }:
|
||||||
|
{
|
||||||
|
options.look.colors = lib.mkOption {
|
||||||
|
type = lib.types.attrs;
|
||||||
|
default = {};
|
||||||
|
};
|
||||||
|
|
||||||
|
config.look.colors = {
|
||||||
|
prime = "12c949"; #12c949
|
||||||
|
accent = "115622"; #115622
|
||||||
|
split = "2c7250"; #2c7250
|
||||||
|
actSplit = "457551"; #457551
|
||||||
|
dark = "101911"; #101911
|
||||||
|
mid = "17231c"; #17231c
|
||||||
|
light = "263327"; #263327
|
||||||
|
urgent = "C43823"; #C43823
|
||||||
|
text = "C7D3E3"; #C7D3E3
|
||||||
|
|
||||||
|
folder = "green";
|
||||||
|
wallpapers = "leaves";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue