mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 18:15:13 -05:00
feat: expanded all lists
This commit is contained in:
parent
59cc199722
commit
bb0b55b011
144 changed files with 1798 additions and 507 deletions
|
@ -7,14 +7,28 @@
|
|||
extraModulePackages = [
|
||||
config.boot.kernelPackages.v4l2loopback.out
|
||||
];
|
||||
supportedFilesystems = ["ntfs"];
|
||||
supportedFilesystems = [
|
||||
"ntfs"
|
||||
];
|
||||
initrd = {
|
||||
network.openvpn.enable = true;
|
||||
availableKernelModules = ["nvme" "ahci" "xhci_pci" "usb_storage" "usbhid" "sd_mod"];
|
||||
kernelModules = [];
|
||||
availableKernelModules = [
|
||||
"nvme"
|
||||
"ahci"
|
||||
"xhci_pci"
|
||||
"usb_storage"
|
||||
"usbhid"
|
||||
"sd_mod"
|
||||
];
|
||||
kernelModules = [
|
||||
];
|
||||
};
|
||||
|
||||
kernelModules = ["kvm-amd" "vfio-pci" "v4l2loopback"];
|
||||
kernelModules = [
|
||||
"kvm-amd"
|
||||
"vfio-pci"
|
||||
"v4l2loopback"
|
||||
];
|
||||
|
||||
kernelPackages = pkgs.linuxPackages_latest;
|
||||
|
||||
|
|
|
@ -3,9 +3,21 @@
|
|||
config,
|
||||
...
|
||||
}: let
|
||||
inherit (flake.config.people) user0 user1;
|
||||
inherit (flake.config.machines.devices) desktop server synology;
|
||||
inherit (flake.config.services.instances) samba;
|
||||
inherit
|
||||
(flake.config.people)
|
||||
user0
|
||||
user1
|
||||
;
|
||||
inherit
|
||||
(flake.config.machines.devices)
|
||||
desktop
|
||||
server
|
||||
synology
|
||||
;
|
||||
inherit
|
||||
(flake.config.services.instances)
|
||||
samba
|
||||
;
|
||||
|
||||
synologySecrets = config.sops.secrets."network/synology".path;
|
||||
serverSecrets = config.sops.secrets."network/server".path;
|
||||
|
|
|
@ -20,5 +20,7 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
boot.initrd.kernelModules = ["amdgpu"];
|
||||
boot.initrd.kernelModules = [
|
||||
"amdgpu"
|
||||
];
|
||||
}
|
||||
|
|
|
@ -3,7 +3,10 @@
|
|||
flake,
|
||||
...
|
||||
}: let
|
||||
inherit (flake.config.machines.devices) desktop;
|
||||
inherit
|
||||
(flake.config.machines.devices)
|
||||
desktop
|
||||
;
|
||||
in {
|
||||
networking = {
|
||||
hostName = desktop.name;
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
{flake, ...}: let
|
||||
inherit (flake.config.people) user0;
|
||||
inherit (flake.config.people.users.${user0}) paths;
|
||||
inherit
|
||||
(flake.config.people)
|
||||
user0
|
||||
;
|
||||
inherit
|
||||
(flake.config.people.users.${user0})
|
||||
paths
|
||||
;
|
||||
in {
|
||||
sops = {
|
||||
secrets = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue