nixos-config/hosts/zephyrus/home.nix

32 lines
800 B
Nix
Raw Normal View History

2021-07-23 18:47:53 +02:00
{ config, pkgs, ... }:
{
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-01-14 15:06:20 +01: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 {
inherit (pkgs)
# some websites only work there :(
chromium
2021-07-23 18:47:53 +02:00
2022-01-11 16:08:21 +01:00
darktable
2021-09-08 22:25:52 +02:00
2022-01-11 16:08:21 +01:00
# dev
rustup
;
2021-07-24 01:32:49 +02:00
2022-01-11 16:08:21 +01:00
inherit (pkgs.packages) spot;
2021-07-23 18:47:53 +02:00
2022-01-11 16:08:21 +01:00
inherit (pkgs.wineWowPackages) stable;
};
2021-07-23 18:47:53 +02:00
};
}