dotfiles/nixos/home-manager/default.nix

37 lines
586 B
Nix
Raw Normal View History

2021-09-22 13:41:05 +01:00
{ config, pkgs, inputs, ... }:
2020-04-19 12:23:21 +01:00
{
home.sessionVariables = {
LC_ALL="en_GB.UTF-8";
LANG="en_GB.UTF-8";
PASSWORD_STORE_ENABLE_EXTENSIONS="true";
};
news.display = "show";
2020-04-19 13:30:00 +01:00
home.packages = with pkgs; [
nerdfonts
glibcLocales
];
2020-04-19 12:23:21 +01:00
2020-11-01 13:41:01 +00:00
services.gpg-agent= {
enable = true;
pinentryFlavor = "curses";
};
2020-11-22 19:02:43 +00:00
services.kbfs.enable = true;
2020-04-19 12:23:21 +01:00
imports = [
./programs/tmux.nix
./programs/zsh.nix
./programs/vim.nix
2021-05-28 15:58:33 +01:00
./programs/emacs/home.nix
2020-07-04 11:34:18 +01:00
./programs/newsboat.nix
2020-04-19 12:23:21 +01:00
./programs.nix
./links.nix
2021-07-18 08:20:21 +01:00
./scripts.nix
2020-04-19 12:23:21 +01:00
./cli.nix
];
}