forked from colonelpanic/dotfiles
[NixOS] Spread home manager configuration out
This commit is contained in:
@@ -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 = [ ];
|
||||
|
||||
|
@@ -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";
|
||||
}
|
||||
|
Reference in New Issue
Block a user