hardware/gpu: add gpu module
This commit is contained in:
parent
c634a13ac3
commit
d71ee4073c
9 changed files with 59 additions and 52 deletions
|
@ -8,10 +8,6 @@
|
|||
(with profiles; [
|
||||
networking.wireless
|
||||
|
||||
(with hardware; [
|
||||
gpu.nvidia
|
||||
])
|
||||
|
||||
btrfs
|
||||
virtualization
|
||||
|
||||
|
@ -28,6 +24,7 @@
|
|||
modules = {
|
||||
boot.grub.enable = true;
|
||||
hardware = {
|
||||
gpu.nvidia = true;
|
||||
wireless.enable = true;
|
||||
form.desktop = true;
|
||||
};
|
||||
|
|
|
@ -5,10 +5,6 @@
|
|||
(with profiles; [
|
||||
networking.wireless
|
||||
|
||||
(with hardware; [
|
||||
gpu.intel
|
||||
])
|
||||
|
||||
# services.privoxy
|
||||
])
|
||||
|
||||
|
@ -44,6 +40,7 @@
|
|||
modules = {
|
||||
boot.grub.enable = true;
|
||||
hardware = {
|
||||
gpu.intel = true;
|
||||
form.laptop = true;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -1,14 +1,13 @@
|
|||
{ suites, profiles, pkgs, lib, ... }: {
|
||||
imports = lib.our.flattenListSet {
|
||||
suites = with suites; [ base ];
|
||||
imports = [ ];
|
||||
profiles = with profiles; [
|
||||
hardware.gpu.nvidia
|
||||
];
|
||||
};
|
||||
|
||||
modules = {
|
||||
boot.grub.enable = true;
|
||||
hardware.form.server = true;
|
||||
hardware = {
|
||||
gpu.nvidia = true;
|
||||
form.server = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue