Fixup
This commit is contained in:
parent
e1c562191b
commit
186fb9d017
6 changed files with 44 additions and 48 deletions
34
modules/profiles/laptop/default.nix
Normal file
34
modules/profiles/laptop/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
with lib;
|
||||
{
|
||||
imports = import ../../module-list.nix ++ [
|
||||
../base
|
||||
];
|
||||
|
||||
dadada = {
|
||||
networking = {
|
||||
useLocalResolver = mkDefault true;
|
||||
domain = mkDefault "dadada.li";
|
||||
};
|
||||
};
|
||||
|
||||
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" ];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue