non-nixos configs.

This commit is contained in:
Gabe Venberg 2024-03-24 17:39:49 -05:00
parent 5d77bb8b35
commit bf200e93e6
37 changed files with 4361 additions and 0 deletions

20
hosts/gabe-archlaptop.nix Normal file
View file

@ -0,0 +1,20 @@
{
config,
pkgs,
lib,
...
}: {
# Home Manager needs a bit of information about you and the paths it should
# manage.
# machine specific options
host.enable-speech = true;
host.nvim.enable-lsp = true;
host.nvim.enable-treesitter = true;
targets.genericLinux.enable = true;
home.username = "gabe";
home.homeDirectory = "/home/gabe";
imports = [
../terminal/home.nix
];
}

View file

@ -0,0 +1,20 @@
{
config,
pkgs,
lib,
...
}: {
# Home Manager needs a bit of information about you and the paths it should
# manage.
# machine specific options
host.enable-speech = false;
host.nvim.enable-lsp = false;
host.nvim.enable-treesitter = true;
targets.genericLinux.enable = true;
home.username = "gabe";
home.homeDirectory = "/home/gabe";
imports = [
../terminal/home.nix
];
}