dotfiles/nixos/home-manager/default.nix

30 lines
582 B
Nix
Raw Normal View History

2023-02-08 16:33:53 +00:00
{ config, pkgs, inputs, lib, ... }:
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";
2023-02-08 16:33:53 +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;
2023-02-08 16:33:53 +00:00
home.homeDirectory = lib.mkDefault "/home/${username}";
2023-06-19 21:34:51 +01:00
home.stateVersion = "23.05";
2022-12-02 14:56:05 +00:00
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/newsboat.nix
./programs/ssh.nix
./programs/tmux.nix
2020-04-19 12:23:21 +01:00
];
}