nixos-conf/machine-confs/lithium.nix

19 lines
247 B
Nix
Raw Normal View History

2024-07-11 16:43:26 +03:00
{
config,
pkgs,
lib,
...
}:
{
2024-07-11 16:45:40 +03:00
networking.hostName = "lithium";
2024-07-11 16:43:26 +03:00
2024-07-11 16:45:40 +03:00
imports = [
2024-07-11 16:43:26 +03:00
../base.nix
../users/vili.nix
../desktop.nix
../development.nix
../services/redshift.nix
../hardware-specific/usb-automount.nix
];
}