I NEED TECH SUPPORT

This commit is contained in:
KaitoTLex 2024-09-03 18:05:41 -07:00
commit 63888160ec
7 changed files with 992 additions and 0 deletions

51
flake.nix Normal file
View file

@ -0,0 +1,51 @@
{
description = "System configuration flake.";
inputs = {
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
spicetify = {
url = "github:Gerg-L/spicetify-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
nixvim = {
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
self,
nixpkgs,
home-manager,
...
} @ inputs: {
formatter."x86_64-linux" = nixpkgs.legacyPackages.x86_64-linux.alejandra;
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
system = "x86_64-linux";
modules = [
./configuration.nix
home-manager.nixosModules.home-manager
{
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {inherit inputs;};
users.kaitotlex = {
imports = [
./home.nix
./spicetify.nix
inputs.nixvim.homeManagerModules.nixvim
#./nixvim.nix
];
};
};
}
];
};
};
}