dotfiles/nixos/home-manager/default.nix

39 lines
673 B
Nix
Raw Normal View History

2022-12-19 09:09:08 +00:00
{
config,
pkgs,
inputs,
...
}: let
username = "cyryl";
2022-12-02 14:56:05 +00:00
in {
2020-04-19 12:23:21 +01:00
home.sessionVariables = {
2021-11-22 19:32:26 +00:00
LC_ALL = "en_GB.UTF-8";
LANG = "en_GB.UTF-8";
PASSWORD_STORE_ENABLE_EXTENSIONS = "true";
2020-04-19 12:23:21 +01:00
};
news.display = "show";
2022-12-19 09:09:08 +00:00
home.packages = with pkgs; [];
2020-04-19 12:23:21 +01:00
2022-12-02 14:56:05 +00:00
home.username = username;
home.homeDirectory = "/home/${username}";
home.stateVersion = "22.05";
programs.home-manager.enable = true;
2020-04-19 12:23:21 +01:00
imports = [
2022-11-08 11:05:06 +00:00
./cli.nix
2020-04-19 12:23:21 +01:00
./links.nix
2021-07-18 08:20:21 +01:00
./scripts.nix
2022-11-08 11:05:06 +00:00
./programs.nix
./programs/emacs/home.nix
2022-12-07 23:52:15 +00:00
./programs/helix.nix
2022-11-08 11:05:06 +00:00
./programs/newsboat.nix
./programs/ssh.nix
./programs/tmux.nix
./programs/vim.nix
./programs/zsh.nix
2020-04-19 12:23:21 +01:00
];
}