non-nixos configs.
This commit is contained in:
parent
5d77bb8b35
commit
bf200e93e6
37 changed files with 4361 additions and 0 deletions
20
hosts/gabe-archlaptop.nix
Normal file
20
hosts/gabe-archlaptop.nix
Normal 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
|
||||
];
|
||||
}
|
20
hosts/non-nixos-server.nix
Normal file
20
hosts/non-nixos-server.nix
Normal 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
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue