Relocated nixos-hardware import into host's hardware.nix
This commit is contained in:
parent
6b76516984
commit
470e1ca6b0
|
@ -48,10 +48,7 @@
|
||||||
inherit self inputs;
|
inherit self inputs;
|
||||||
supportedSystems = [ "x86_64-linux" ];
|
supportedSystems = [ "x86_64-linux" ];
|
||||||
hosts = {
|
hosts = {
|
||||||
nil.modules = [
|
nil.modules = [ ./hosts/nil ];
|
||||||
nixos-hardware.nixosModules.lenovo-thinkpad-t14-amd-gen2
|
|
||||||
./hosts/nil
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
channels.nixpkgs = {
|
channels.nixpkgs = {
|
||||||
|
|
|
@ -25,7 +25,9 @@
|
||||||
# ├─rpool/root zfs
|
# ├─rpool/root zfs
|
||||||
# ├─rpool/root/nixos zfs /
|
# ├─rpool/root/nixos zfs /
|
||||||
# └─rpool/home zfs /home
|
# └─rpool/home zfs /home
|
||||||
{ self, config, lib, pkgs, modulesPath, ... }: {
|
{ self, config, nixos-hardware, lib, pkgs, modulesPath, ... }: {
|
||||||
|
imports =
|
||||||
|
[ nixos-hardware.nixosModules.lenovo-thinkpad-t14-amd-gen2 ];
|
||||||
my.system = {
|
my.system = {
|
||||||
zfs.enable = true;
|
zfs.enable = true;
|
||||||
yubikey.enable = true;
|
yubikey.enable = true;
|
||||||
|
|
Reference in New Issue
Block a user