nixos-config/hosts/talos/home.nix

47 lines
925 B
Nix
Raw Normal View History

2024-03-03 01:56:35 +01:00
{
config,
pkgs,
...
}: {
home-manager.users.alarsyo = {
2024-03-03 02:42:30 +01:00
home.stateVersion = "23.11";
2024-03-03 01:56:35 +01:00
my.home.laptop.enable = true;
# Keyboard settings & i3 settings
my.home.x.enable = true;
my.home.x.i3bar.temperature.chip = "k10temp-pci-*";
my.home.x.i3bar.temperature.inputs = ["Tctl"];
my.home.x.i3bar.networking.throughput_interfaces = ["wlp1s0"];
my.home.emacs.enable = true;
my.theme = config.home-manager.users.alarsyo.my.themes.solarizedLight;
# TODO: place in global home conf
services.dunst.enable = true;
home.packages = builtins.attrValues {
inherit
(pkgs)
# some websites only work there :(
2024-03-03 02:44:38 +01:00
chromium
# dev
2024-03-03 01:56:35 +01:00
2024-03-03 02:44:38 +01:00
rustup
gdb
valgrind
zotero
2024-03-03 01:56:35 +01:00
;
2024-03-03 02:44:38 +01:00
inherit
(pkgs.packages)
ansel
spot
;
2024-03-03 01:56:35 +01:00
2024-03-03 02:44:38 +01:00
inherit (pkgs.wineWowPackages) stable;
2024-03-03 01:56:35 +01:00
};
};
}