38 lines
795 B
Nix
38 lines
795 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home-manager.users.alarsyo = {
|
|
home.stateVersion = "23.11";
|
|
|
|
my.home.laptop.enable = true;
|
|
|
|
# Keyboard settings & i3 settings
|
|
my.home.x.enable = true;
|
|
my.home.x.i3bar.temperature.chip = "k10temp-pci-*";
|
|
my.home.x.i3bar.temperature.inputs = ["Tctl"];
|
|
my.home.x.i3bar.networking.throughput_interfaces = ["wlp1s0"];
|
|
my.home.emacs.enable = true;
|
|
|
|
my.theme = config.home-manager.users.alarsyo.my.themes.solarizedLight;
|
|
|
|
# TODO: place in global home conf
|
|
services.dunst.enable = true;
|
|
|
|
home.packages = builtins.attrValues {
|
|
inherit
|
|
(pkgs)
|
|
ansel
|
|
chromium # some websites only work there :(
|
|
zotero
|
|
;
|
|
|
|
inherit
|
|
(pkgs.packages)
|
|
spot
|
|
;
|
|
};
|
|
};
|
|
}
|