refactor(host:work): reorganise work files
This commit is contained in:
parent
e2a58cf55a
commit
50a709fae2
3 changed files with 3 additions and 2 deletions
26
hosts/work/home-config.nix
Normal file
26
hosts/work/home-config.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ ... }: {
|
||||
config.modules = {
|
||||
application = {
|
||||
zathura.enable = true;
|
||||
foot.enable = true;
|
||||
};
|
||||
audio.cmus.enable = true;
|
||||
cli = {
|
||||
direnv.enable = true;
|
||||
ghq.enable = true;
|
||||
git = {
|
||||
enable = true;
|
||||
userEmail = "ybarbanneau@sellsy.com";
|
||||
};
|
||||
neovim.enable = true;
|
||||
starship.enable = true;
|
||||
utils.enable = true;
|
||||
vifm.enable = true;
|
||||
zsh.enable = true;
|
||||
};
|
||||
web.firefox = {
|
||||
enable = true;
|
||||
enableNixGL = true;
|
||||
};
|
||||
};
|
||||
}
|
20
hosts/work/includes/home-manager.nix
Normal file
20
hosts/work/includes/home-manager.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
dejavu_fonts
|
||||
font-awesome
|
||||
lato
|
||||
liberation_ttf
|
||||
libertine
|
||||
libnotify
|
||||
(nerdfonts.override {
|
||||
fonts = [
|
||||
"FiraCode"
|
||||
];
|
||||
})
|
||||
noto-fonts-emoji
|
||||
noto-fonts-cjk
|
||||
slurp
|
||||
wl-clipboard
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue