refactor: hosts/modules/hardware -> hosts/common/hardware

the config here didn't have any options; doesn't really make sense as a module
This commit is contained in:
2023-09-07 10:29:25 +00:00
parent d92b393f01
commit 9582ea2e0a
5 changed files with 5 additions and 9 deletions

View File

@@ -3,7 +3,7 @@
imports = [ imports = [
./feeds.nix ./feeds.nix
./fs.nix ./fs.nix
./hardware.nix ./hardware
./home ./home
./ids.nix ./ids.nix
./machine-id.nix ./machine-id.nix

View File

@@ -1,6 +1,10 @@
{ lib, pkgs, ... }: { lib, pkgs, ... }:
{ {
imports = [
./x86_64.nix
];
boot.initrd.supportedFilesystems = [ "ext4" "btrfs" "ext2" "ext3" "vfat" ]; boot.initrd.supportedFilesystems = [ "ext4" "btrfs" "ext2" "ext3" "vfat" ];
# useful emergency utils # useful emergency utils
boot.initrd.extraUtilsCommands = '' boot.initrd.extraUtilsCommands = ''

View File

@@ -4,7 +4,6 @@
imports = [ imports = [
./derived-secrets ./derived-secrets
./gui ./gui
./hardware
./hostnames.nix ./hostnames.nix
./hosts.nix ./hosts.nix
./nixcache.nix ./nixcache.nix

View File

@@ -1,7 +0,0 @@
{ ... }:
{
imports = [
./x86_64.nix
];
}