nix-config/modules/profiles/laptop/default.nix
2020-12-30 19:51:37 +01:00

37 lines
705 B
Nix

{ config, pkgs, lib, ... }:
with lib;
{
imports = [
../base
];
dadada = {
networking = {
useLocalResolver = mkDefault true;
};
};
services.fwupd.enable = true;
fonts.fonts = mkDefault (with pkgs; [
source-code-pro
]);
time.timeZone = mkDefault "Europe/Berlin";
programs.zsh = mkDefault {
enable = true;
autosuggestions.enable = true;
enableCompletion = true;
histSize = 100000;
vteIntegration = true;
syntaxHighlighting = {
enable = true;
highlighters = [ "main" "brackets" "pattern" "cursor" "root" "line" ];
};
};
environment.noXlibs = false;
documentation.enable = true;
documentation.nixos.enable = true;
}