18 lines
273 B
Nix
18 lines
273 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
imports = [
|
|
|
|
./disks.nix
|
|
./hardware-configuration.nix
|
|
./environments.nix
|
|
# ./system.nix use docker here
|
|
];
|
|
|
|
networking.hostName = "jupiter";
|
|
|
|
|
|
system = {
|
|
stateVersion = "23.05";
|
|
autoUpgrade.enable = true;
|
|
};
|
|
} |