From 7605f0fceb032c89a38f1e41bef38d4e00187112 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Thu, 25 Jan 2024 21:14:02 +0300 Subject: [PATCH] Home : Add hw config. --- .config/linux/system/Dasha.nix | 12 ++++++ .config/linux/system/Voronind.nix | 6 ++- .../system/home/HardwareConfiguration.nix | 37 +++++++++++++++++++ 3 files changed, 53 insertions(+), 2 deletions(-) create mode 100644 .config/linux/system/Dasha.nix create mode 100644 .config/linux/system/home/HardwareConfiguration.nix diff --git a/.config/linux/system/Dasha.nix b/.config/linux/system/Dasha.nix new file mode 100644 index 0000000..472246c --- /dev/null +++ b/.config/linux/system/Dasha.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: + +{ + users.users.dasha = { + uid = 1001; + createHome = true; + isNormalUser = true; + description = "Daria Dranchak"; + extraGroups = [ "networkmanager" ]; + packages = with pkgs; [ ]; + }; +} diff --git a/.config/linux/system/Voronind.nix b/.config/linux/system/Voronind.nix index 7b42038..f080aad 100644 --- a/.config/linux/system/Voronind.nix +++ b/.config/linux/system/Voronind.nix @@ -2,9 +2,11 @@ { users.users.voronind = { + uid = 1000; + createHome = true; isNormalUser = true; description = "Dmitry Voronin"; - extraGroups = [ "networkmanager" ]; - packages = with pkgs; [ ]; + extraGroups = [ "networkmanager" ]; + packages = with pkgs; [ ]; }; } diff --git a/.config/linux/system/home/HardwareConfiguration.nix b/.config/linux/system/home/HardwareConfiguration.nix new file mode 100644 index 0000000..e2e32a1 --- /dev/null +++ b/.config/linux/system/home/HardwareConfiguration.nix @@ -0,0 +1,37 @@ +# 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" "usbhid" "usb_storage" "sd_mod" ]; + boot.initrd.kernelModules = [ "dm-snapshot" ]; + boot.kernelModules = [ "kvm-amd" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/45529e37-2d51-45c7-be5a-933294d652e2"; + fsType = "ext4"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/F1D6-267D"; + 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.enp7s0.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +}