nixos-conf/machine-confs/lithium.nix

14 lines
234 B
Nix
Raw Normal View History

2024-07-20 17:35:00 +03:00
{ config, pkgs, ... }:
2024-07-11 16:43:26 +03:00
{
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
];
}