Nixfiles/hostconfig/ZeNixComputa/hm.nix
2023-03-27 22:04:19 +02:00

25 lines
746 B
Nix

{config, ...}: {
home.username = "${config.extraInfo.username}";
home.homeDirectory = "/home/${config.extraInfo.username}";
programs.git = {
userName = "traxys";
userEmail = config.extraInfo.email;
};
wm.workspaces.definitions = {
"2:".output = "HDMI-A-1";
"".output = "DP-2";
"".output = "DP-2";
};
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
# incompatible changes.
#
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "21.11";
}