2020-04-19 12:23:21 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
home.sessionVariables = {
|
|
|
|
LC_ALL="en_GB.UTF-8";
|
|
|
|
LANG="en_GB.UTF-8";
|
|
|
|
CM_LAUNCHER="rofi";
|
|
|
|
PASSWORD_STORE_ENABLE_EXTENSIONS="true";
|
|
|
|
};
|
|
|
|
|
|
|
|
news.display = "show";
|
|
|
|
|
|
|
|
fonts.fontconfig.enable = true;
|
2020-04-19 13:30:00 +01:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
nerdfonts
|
|
|
|
glibcLocales
|
|
|
|
];
|
2020-04-19 12:23:21 +01:00
|
|
|
|
|
|
|
imports = [
|
|
|
|
./programs/tmux.nix
|
|
|
|
./programs/zsh.nix
|
|
|
|
./programs/vim.nix
|
|
|
|
./programs/alacritty.nix
|
|
|
|
./programs.nix
|
|
|
|
./links.nix
|
|
|
|
./cli.nix
|
|
|
|
./i3/home.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
}
|