nixos-config/hosts/zephyrus/home.nix

36 lines
812 B
Nix
Raw Normal View History

2021-07-23 18:47:53 +02:00
{
2022-04-10 11:54:58 +02:00
config,
pkgs,
...
}: {
2021-07-23 18:47:53 +02:00
home-manager.users.alarsyo = {
2021-07-24 02:18:15 +02:00
my.home.laptop.enable = true;
2021-07-23 18:47:53 +02:00
# Keyboard settings & i3 settings
my.home.x.enable = true;
my.home.x.i3bar.temperature.chip = "coretemp-isa-*";
my.home.x.i3bar.temperature.inputs = ["Core 0" "Core 1" "Core 2" "Core 3"];
2022-04-10 11:54:58 +02:00
my.home.x.i3bar.networking.throughput_interfaces = ["enp0s31f6" "wlp0s20f3" "enp43s0u1u1"];
2021-07-23 18:47:53 +02:00
my.home.emacs.enable = true;
my.theme = config.home-manager.users.alarsyo.my.themes.solarizedLight;
2022-01-11 16:08:21 +01:00
home.packages = builtins.attrValues {
2022-04-10 11:54:58 +02:00
inherit
(pkgs)
# some websites only work there :(
chromium
darktable
# dev
rustup
2022-01-11 16:08:21 +01:00
;
2021-07-24 01:32:49 +02:00
2022-04-10 11:54:58 +02:00
inherit (pkgs.packages) spot;
2021-07-23 18:47:53 +02:00
2022-04-10 11:54:58 +02:00
inherit (pkgs.wineWowPackages) stable;
2022-01-11 16:08:21 +01:00
};
2021-07-23 18:47:53 +02:00
};
}