[NixOS] Spread home manager configuration out

This commit is contained in:
2023-08-20 02:54:19 -06:00
parent 7337631c4f
commit 057347f1cf
12 changed files with 250 additions and 201 deletions

View File

@@ -15,7 +15,9 @@
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.initrd.kernelModules = [ "amdgpu" ];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" "amdgpu" ];
boot.initrd.availableKernelModules = [
"nvme" "xhci_pci" "usbhid" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" "amdgpu"
];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];

View File

@@ -1,11 +1,12 @@
{ config, lib, pkgs, inputs, ... }:
{ config, lib, pkgs, inputs, forEachUser, ... }:
{
imports = [
../full.nix
../nixified.ai.nix
];
modules.nixified-ai.enable = true;
boot.loader.systemd-boot.configurationLimit = 5;
networking.hostName = "ryzen-shine";
@@ -18,7 +19,7 @@
boot.plymouth = {
enable = false;
};
boot.kernelParams = ["quiet"];
boot.kernelParams = [ "quiet" ];
services.autorandr = {
enable = true;
@@ -102,6 +103,9 @@
# services.xrdp.openFirewall = true;
system.stateVersion = "20.03";
home-manager.users = forEachUser {
home.stateVersion = "21.05";
};
users.extraUsers.dean.home = "/shared/dean";
}