nixos-config/hosts/boreal/home.nix

29 lines
613 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;
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;
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;
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
unstable.beancount
unstable.fava
2021-04-23 11:12:18 +02:00
];
2021-04-19 14:29:38 +02:00
};
}