zephyrus: init host

This commit is contained in:
Antoine Martin 2021-07-23 18:47:53 +02:00
parent d7387374da
commit cbd98189e2
5 changed files with 181 additions and 0 deletions

26
hosts/zephyrus/home.nix Normal file
View file

@ -0,0 +1,26 @@
{ config, pkgs, ... }:
{
home-manager.users.alarsyo = {
# Keyboard settings & i3 settings
my.home.x.enable = true;
my.home.x.cursor.enable = true;
my.home.alacritty.enable = true;
my.home.emacs.enable = true;
my.home.tmux.enable = true;
my.home.starship.enable = false;
my.home.fish.enable = true;
my.theme = config.home-manager.users.alarsyo.my.themes.solarizedLight;
home.packages = with pkgs; [
# some websites only work there :(
chromium
# dev
rustup
unstable.beancount
unstable.fava
];
};
}