Antoine Martin
bdd0748620
Mixing stable and unstable brought me weird problems, so I'm switching back to unstable entirely until it breaks hard enough to convince me to go back to stable. :)
32 lines
680 B
Nix
32 lines
680 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
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" ];
|
|
my.home.x.i3bar.networking.throughput_interfaces = [ "enp8s0" "wlp4s0" ];
|
|
my.home.emacs.enable = true;
|
|
|
|
my.theme = config.home-manager.users.alarsyo.my.themes.solarizedLight;
|
|
|
|
home.packages = with pkgs; [
|
|
blender
|
|
|
|
# some websites only work there :(
|
|
chromium
|
|
|
|
# dev
|
|
rustup
|
|
|
|
beancount
|
|
fava
|
|
|
|
# keyboard goodness
|
|
chrysalis
|
|
|
|
packages.spot
|
|
];
|
|
};
|
|
}
|