nixos-config/hosts/boreal/home.nix

27 lines
631 B
Nix
Raw Normal View History

2021-04-23 11:12:18 +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-*";
my.home.x.i3bar.temperature.inputs = [ "Tccd1" ];
2021-08-10 02:48:46 +02:00
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
home.packages = with pkgs; [
2021-06-02 19:04:45 +02:00
# some websites only work there :(
chromium
2021-04-23 22:05:46 +02:00
# dev
2021-06-02 19:04:45 +02:00
rustup
2021-04-23 22:05:46 +02:00
2021-07-14 17:41:52 +02:00
# keyboard goodness
chrysalis
packages.spot
2021-04-23 11:12:18 +02:00
];
2021-04-19 14:29:38 +02:00
};
}