From c272eaf1580cb3846f350f51d0e8c3cc107e03b0 Mon Sep 17 00:00:00 2001 From: caandt Date: Tue, 17 Dec 2024 00:16:21 -0500 Subject: [PATCH] init hebesu --- hosts/hebesu/default.nix | 21 +++++++++++ hosts/hebesu/hardware-configuration.nix | 48 +++++++++++++++++++++++++ hosts/hebesu/users/ahnwuoa/default.nix | 12 +++++++ user/home.nix | 2 ++ 4 files changed, 83 insertions(+) create mode 100644 hosts/hebesu/default.nix create mode 100644 hosts/hebesu/hardware-configuration.nix create mode 100644 hosts/hebesu/users/ahnwuoa/default.nix diff --git a/hosts/hebesu/default.nix b/hosts/hebesu/default.nix new file mode 100644 index 0000000..6649530 --- /dev/null +++ b/hosts/hebesu/default.nix @@ -0,0 +1,21 @@ +{...}: { + imports = [ + ../../system + ./hardware-configuration.nix + ]; + + networking.hostName = "hebesu"; + services.tzupdate.enable = true; + services.xserver = { + videoDrivers = ["modesetting"]; + deviceSection = '' + Option "DRI" "2" + Option "TearFree" "true" + ''; + xkb.options = "ctrl:nocaps"; + }; + users.users.ahnwuoa = { + isNormalUser = true; + extraGroups = ["wheel" "podman"]; + }; +} diff --git a/hosts/hebesu/hardware-configuration.nix b/hosts/hebesu/hardware-configuration.nix new file mode 100644 index 0000000..f7ea762 --- /dev/null +++ b/hosts/hebesu/hardware-configuration.nix @@ -0,0 +1,48 @@ +# 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" "usbhid" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-amd" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/e9de5286-c8b1-4629-be01-f052c34b4062"; + fsType = "ext4"; + }; + + fileSystems."/home" = + { device = "/dev/disk/by-uuid/aa592b0f-13bd-4ae6-af3f-68a8f76f65ae"; + fsType = "ext4"; + }; + + boot.initrd.luks.devices."drive".device = "/dev/disk/by-uuid/60d5cc58-4381-4869-a1b5-d4e2bf1afdfd"; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/F0F5-744F"; + fsType = "vfat"; + options = [ "fmask=0022" "dmask=0022" ]; + }; + + swapDevices = + [ { device = "/dev/disk/by-uuid/2d015dcd-81a0-4d81-b530-5ea96aa0d953"; } + ]; + + # 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.enp1s0.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; +} diff --git a/hosts/hebesu/users/ahnwuoa/default.nix b/hosts/hebesu/users/ahnwuoa/default.nix new file mode 100644 index 0000000..8ac0829 --- /dev/null +++ b/hosts/hebesu/users/ahnwuoa/default.nix @@ -0,0 +1,12 @@ +{ + config, + pkgs, + ... +}: { + imports = [ + ../../../../user + ]; + + home.username = "ahnwuoa"; + xresources.properties."Xft.dpi" = 120; +} diff --git a/user/home.nix b/user/home.nix index 1f7d31c..8c325a5 100644 --- a/user/home.nix +++ b/user/home.nix @@ -62,6 +62,8 @@ alejandra ffmpeg ffsubsync + unzip + unar (python312.withPackages (python-pkgs: [ python-pkgs.pwntools