20 lines
304 B
Nix
20 lines
304 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
../home-manager/main.nix
|
||
|
|
||
|
./console.nix
|
||
|
./environment.nix
|
||
|
./fonts.nix
|
||
|
./i18n.nix
|
||
|
./nix.nix
|
||
|
./services.nix
|
||
|
./users.nix
|
||
|
];
|
||
|
|
||
|
nixpkgs.config.allowUnfree = true;
|
||
|
time.timeZone = "Europe/Amsterdam";
|
||
|
programs.zsh.enable = true;
|
||
|
}
|