-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.nix
37 lines (29 loc) · 945 Bytes
/
settings.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ pkgs, ... }: rec {
system = "x86_64-linux";
hostname = "nixos";
username = "malofeev";
name = "Malofeev Ivan";
email = "[email protected]";
timezone = "Asia/Novosibirsk";
locale = "en_US.UTF-8";
profile = "remote";
dotfilesDir = "/home/${username}/.dotfiles"; # Absolute path of the local repo
theme = "catppuccin"; # catppuccin / nord
themeDetails = import (./. + "/themes/${theme}.nix") { dir = dotfilesDir; };
# Default font for terminal
# font = "DejaVuSansM Nerd Font Mono";
font = "Hack Nerd Font Mono";
fontPkg = (pkgs.nerdfonts.override { fonts = [ "DejaVuSansMono" "Hack" ]; });
fontSize = 12;
# Icon theme for nautilus, ags and so on
icons = "Adwaita";
iconsPkg = pkgs.adwaita-icon-theme;
# Default editor
editor = "nvim";
# Default browser
browser = "firefox";
browserPkg = pkgs.firefox;
# Default terminal command
term = "alacritty";
termPkg = pkgs.alacritty;
}