forked from natto1784/dotfiles
13 lines
182 B
Nix
13 lines
182 B
Nix
{ config, ... }:
|
|
{
|
|
imports = [
|
|
./networking.nix
|
|
./hardware.nix
|
|
./boot.nix
|
|
./services.nix
|
|
];
|
|
|
|
time.timeZone = "Asia/Kolkata";
|
|
system.stateVersion = "21.05";
|
|
}
|