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;
|
2021-04-21 18:53:21 +02:00
|
|
|
my.home.x.cursor.enable = true;
|
2021-04-22 00:25:39 +02:00
|
|
|
my.home.alacritty.enable = true;
|
2021-04-19 15:42:27 +02:00
|
|
|
my.home.emacs.enable = true;
|
2021-04-19 18:59:24 +02:00
|
|
|
my.home.tmux.enable = true;
|
2021-04-22 16:21:30 +02:00
|
|
|
my.home.starship.enable = false;
|
|
|
|
my.home.fish.enable = true;
|
|
|
|
|
2021-04-21 10:30:05 +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
|
|
|
blender
|
|
|
|
|
|
|
|
# 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-06-02 18:09:22 +02:00
|
|
|
unstable.beancount
|
|
|
|
unstable.fava
|
2021-07-14 17:08:19 +02:00
|
|
|
|
2021-07-14 17:41:52 +02:00
|
|
|
# keyboard goodness
|
|
|
|
chrysalis
|
|
|
|
|
2021-07-14 17:08:19 +02:00
|
|
|
packages.spot
|
2021-04-23 11:12:18 +02:00
|
|
|
];
|
2021-04-19 14:29:38 +02:00
|
|
|
};
|
|
|
|
}
|