Added zsh, neovim, and some other stuff.

This commit is contained in:
CronyAkatsuki 2025-01-28 21:14:57 +01:00
parent 2dca39131a
commit 6995807563
5 changed files with 3267 additions and 51 deletions

View file

@ -13,14 +13,25 @@
# Let's theme everything easilly
stylix.url = "github:danth/stylix";
# NVF FOR SUPER NVIM
nvf = {
url = "github:notashelf/nvf";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, home-manager, ... }@inputs: {
outputs = {
self,
nixpkgs,
home-manager,
...
} @ inputs: {
nixosConfigurations.default = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
modules = [
./hosts/default/configuration.nix
inputs.stylix.nixosModules.stylix
inputs.stylix.nixosModules.stylix
];
};
};