nixos-config/hosts/hephaestus/home.nix

48 lines
989 B
Nix
Raw Normal View History

2023-09-23 13:35:35 +02:00
{
config,
pkgs,
...
}: {
home-manager.users.alarsyo = {
2024-03-03 02:42:30 +01:00
home.stateVersion = "23.05";
2023-09-23 13:35:35 +02:00
my.home.laptop.enable = true;
# Keyboard settings & i3 settings
my.home.x.enable = true;
2024-03-08 21:40:08 +01:00
my.home.x.i3.enable = true;
2023-09-23 13:35:35 +02:00
my.home.x.i3bar.temperature.chip = "k10temp-pci-*";
2023-09-26 16:57:46 +02:00
my.home.x.i3bar.temperature.inputs = ["Tctl"];
my.home.x.i3bar.networking.throughput_interfaces = ["wlp3s0" "enp6s0f3u1u1"];
2023-09-23 13:35:35 +02:00
my.home.emacs.enable = true;
my.theme = config.home-manager.users.alarsyo.my.themes.solarizedLight;
2023-09-26 16:57:08 +02:00
# TODO: place in global home conf
services.dunst.enable = true;
2023-09-23 13:35:35 +02:00
home.packages = builtins.attrValues {
inherit
(pkgs)
# some websites only work there :(
chromium
darktable
# dev
rustup
gdb
valgrind
zotero
;
inherit
(pkgs.packages)
ansel
spot
;
2023-09-23 13:35:35 +02:00
inherit (pkgs.wineWowPackages) stable;
};
};
}