zephyrus: init host
This commit is contained in:
parent
d7387374da
commit
cbd98189e2
5 changed files with 181 additions and 0 deletions
26
hosts/zephyrus/home.nix
Normal file
26
hosts/zephyrus/home.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue