added vm auto-resizing screens.
This commit is contained in:
parent
43a47321e4
commit
07a4bf6477
11 changed files with 70 additions and 38 deletions
38
roles/home-manager/terminal.nix
Normal file
38
roles/home-manager/terminal.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./minimal-terminal.nix
|
||||
../../modules/home-manager/terminal/nushell
|
||||
../../modules/home-manager/terminal/starship.nix
|
||||
../../modules/home-manager/terminal/voice.nix
|
||||
../../modules/home-manager/terminal/tiny-irc.nix
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
tre-command
|
||||
diskonaut
|
||||
hyperfine
|
||||
];
|
||||
|
||||
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
||||
# plain files is through 'home.file'.
|
||||
home.file = {
|
||||
};
|
||||
|
||||
home.sessionVariables = {
|
||||
PIPENV_VENV_IN_PROJECT = 1;
|
||||
POETRY_VIRTUALENVS_IN_PROJECT = 1;
|
||||
};
|
||||
|
||||
home.shellAliases = {
|
||||
# doc2pdf = "loffice --convert-to-pdf --headless *.docx";
|
||||
};
|
||||
|
||||
programs = {
|
||||
zoxide.enable = true;
|
||||
tealdeer.enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue