hosts/Infini-DESKTOP: redo imports
This commit is contained in:
parent
1df42e5190
commit
037e4c699e
1 changed files with 18 additions and 9 deletions
|
@ -1,16 +1,25 @@
|
||||||
{ suites, profiles, pkgs, lib, ... }: {
|
{ suites, profiles, pkgs, lib, ... }: {
|
||||||
imports = lib.our.flattenListSet {
|
imports = lib.lists.flatten [
|
||||||
suites = with suites; [ graphic develop ];
|
(with suites; [
|
||||||
imports = [ ./hardware-configuration.nix ];
|
graphic
|
||||||
profiles = with profiles; [
|
develop
|
||||||
|
])
|
||||||
|
|
||||||
|
(with profiles; [
|
||||||
boot.systemd-boot
|
boot.systemd-boot
|
||||||
|
|
||||||
networking.wireless
|
networking.wireless
|
||||||
hardware.sound
|
|
||||||
hardware.gpu.nvidia
|
(with hardware; [
|
||||||
# peripherals.printing
|
sound
|
||||||
|
gpu.nvidia
|
||||||
|
])
|
||||||
|
|
||||||
|
btrfs
|
||||||
|
])
|
||||||
|
|
||||||
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
};
|
|
||||||
|
|
||||||
system.stateVersion = "21.05";
|
system.stateVersion = "21.05";
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue