nixos-config/hosts/boreal/home.nix

34 lines
719 B
Nix
Raw Normal View History

2021-04-19 14:29:38 +02:00
{
2022-04-10 11:54:58 +02:00
config,
pkgs,
...
}: {
2021-04-19 14:29:38 +02:00
home-manager.users.alarsyo = {
# Keyboard settings & i3 settings
my.home.x.enable = true;
my.home.x.i3bar.temperature.chip = "k10temp-pci-*";
2022-04-10 11:54:58 +02:00
my.home.x.i3bar.temperature.inputs = ["Tccd1"];
my.home.x.i3bar.networking.throughput_interfaces = ["enp8s0" "wlp4s0"];
my.home.emacs.enable = true;
2021-04-22 16:21:30 +02:00
my.theme = config.home-manager.users.alarsyo.my.themes.solarizedLight;
2021-04-23 11:12:18 +02:00
2022-01-11 16:08:21 +01:00
home.packages = builtins.attrValues {
2022-04-10 11:54:58 +02:00
inherit
(pkgs)
2021-06-02 19:04:45 +02:00
# some websites only work there :(
2022-04-10 11:54:58 +02:00
2021-06-02 19:04:45 +02:00
chromium
2022-10-10 22:26:05 +02:00
darktable
2022-11-27 23:21:01 +01:00
hugin
enblend-enfuse
2021-04-23 22:05:46 +02:00
# dev
2022-04-10 11:54:58 +02:00
2021-06-02 19:04:45 +02:00
rustup
2022-04-10 11:54:58 +02:00
;
2021-07-14 17:41:52 +02:00
2022-01-11 16:08:21 +01:00
inherit (pkgs.packages) spot;
};
2021-04-19 14:29:38 +02:00
};
}