mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
refactor: move hardware configuration to machine-specific directory
This commit is contained in:
parent
1056a696d3
commit
fa7e3d178e
3 changed files with 4 additions and 3 deletions
|
@ -48,6 +48,7 @@
|
||||||
./modules/nixos/nvidia.nix
|
./modules/nixos/nvidia.nix
|
||||||
./modules/nixos/networking.nix
|
./modules/nixos/networking.nix
|
||||||
./modules/common/fonts.nix
|
./modules/common/fonts.nix
|
||||||
|
./machines/nixos/hardware-configuration.nix
|
||||||
|
|
||||||
catppuccin.nixosModules.catppuccin
|
catppuccin.nixosModules.catppuccin
|
||||||
|
|
||||||
|
|
|
@ -5,9 +5,9 @@
|
||||||
{ config, inputs, pkgs, ... }:
|
{ config, inputs, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ # Include the results of the hardware scan.
|
# imports = [ # Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
# ./hardware-configuration.nix
|
||||||
];
|
# ];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
boot.loader = {
|
boot.loader = {
|
||||||
|
|
Loading…
Reference in a new issue