From c8e07a1a91c666a2773d5458fb3b86d0e570b083 Mon Sep 17 00:00:00 2001 From: xqtc161 Date: Sat, 13 Jan 2024 17:34:49 +0100 Subject: [PATCH] Added asmodeus host --- home/lambda/default.nix | 5 ++- hosts/asmodeus/default.nix | 2 +- hosts/asmodeus/hardware-configuration.nix | 38 +++++++++++++++++++++++ 3 files changed, 41 insertions(+), 4 deletions(-) create mode 100644 hosts/asmodeus/hardware-configuration.nix diff --git a/home/lambda/default.nix b/home/lambda/default.nix index c06800c..6b3d499 100644 --- a/home/lambda/default.nix +++ b/home/lambda/default.nix @@ -12,10 +12,9 @@ programs.wezterm = { enable = true; extraConfig = '' - local wezterm = require 'wezterm' local config = {} - config.color_scheme = "DoomOne" + config.color_scheme = "Sakura" config.font = wezterm.font 'Hack Nerd Font Mono' config.font_size = 15 config.window_background_opacity = .8 @@ -35,7 +34,7 @@ --} config.text_background_opacity = .4 config.enable_scroll_bar = false - config.enable_tab_bar = false + config.enable_tab_bar = true config.enable_wayland = false config.front_end = "OpenGL" config.warn_about_missing_glyphs = false diff --git a/hosts/asmodeus/default.nix b/hosts/asmodeus/default.nix index a2cdb7d..b4b8073 100644 --- a/hosts/asmodeus/default.nix +++ b/hosts/asmodeus/default.nix @@ -49,7 +49,7 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; - networking.hostName = "lambda"; # Define your hostname. + networking.hostName = "asmodeus"; # Define your hostname. # Pick only one of the below networking options. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. diff --git a/hosts/asmodeus/hardware-configuration.nix b/hosts/asmodeus/hardware-configuration.nix new file mode 100644 index 0000000..88d0226 --- /dev/null +++ b/hosts/asmodeus/hardware-configuration.nix @@ -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 = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" "sr_mod" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-amd" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/5e34fc38-c199-4b85-b756-1c65ed7471fc"; + fsType = "ext4"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/C3D3-9E29"; + 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..useDHCP`. + networking.useDHCP = lib.mkDefault true; + # networking.interfaces.enp42s0.useDHCP = lib.mkDefault true; + # networking.interfaces.wlo1.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +}