stuff
This commit is contained in:
@@ -21,6 +21,8 @@
|
||||
url = "github:AlvaroParker/helium-nix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
comfyui-nix.url = "github:utensils/comfyui-nix";
|
||||
hermes-agent.url = "github:NousResearch/hermes-agent";
|
||||
naviterm = {
|
||||
url = "gitlab:detoxify92/naviterm";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
@@ -29,13 +31,12 @@
|
||||
millennium.url = "github:SteamClientHomebrew/Millennium?dir=packages/nix";
|
||||
master.url = "github:NixOS/nixpkgs/master";
|
||||
home-manager.url = "github:nix-community/home-manager";
|
||||
noctalia = {
|
||||
url = "github:noctalia-dev/noctalia-shell";
|
||||
dms = {
|
||||
url = "github:AvengeMedia/DankMaterialShell/stable";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
nixvim = {
|
||||
url = "github:nix-community/nixvim";
|
||||
#inputs.nixpkgs.follows = "nixpkgs";
|
||||
lazyvim = {
|
||||
url = "github:pfassina/lazyvim-nix";
|
||||
};
|
||||
subtui = {
|
||||
url = "github:MattiaPun/SubTUI";
|
||||
@@ -51,7 +52,7 @@
|
||||
};
|
||||
|
||||
|
||||
outputs = { self, stylix, astal, nixpkgs, home-manager, zen-browser, master, nixos-apple-silicon, subtui, nix-cachyos-kernel, nixvim, noctalia,... }@inputs:
|
||||
outputs = { self, stylix, astal, nixpkgs, home-manager, comfyui-nix, zen-browser, master, nixos-apple-silicon, subtui, nix-cachyos-kernel, hermes-agent, lazyvim,... }@inputs:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
lib = nixpkgs.lib;
|
||||
@@ -63,23 +64,24 @@
|
||||
nixosConfigurations = {
|
||||
nixos = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {inherit nixvim; inherit pkgs-master;};
|
||||
specialArgs = {inherit lazyvim; inherit pkgs-master;};
|
||||
specialArgs.inputs = inputs;
|
||||
modules = [
|
||||
./hosts/desktop/configuration.nix
|
||||
hermes-agent.nixosModules.default
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.extraSpecialArgs = {inherit inputs;};
|
||||
home-manager.users.joshuaelm = {
|
||||
imports = [ ./hosts/desktop/home.nix nixvim.homeModules.nixvim stylix.homeModules.stylix ];
|
||||
imports = [ ./hosts/desktop/home.nix stylix.homeModules.stylix ];
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
nixos-laptop = nixpkgs.lib.nixosSystem {
|
||||
system = "aarch64-linux";
|
||||
specialArgs = {inherit nixvim;};
|
||||
specialArgs = {inherit lazyvim;};
|
||||
specialArgs.inputs = inputs;
|
||||
modules = [
|
||||
{
|
||||
@@ -92,7 +94,7 @@
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.extraSpecialArgs = {inherit inputs;};
|
||||
home-manager.users.joshuaelm = {
|
||||
imports = [ ./hosts/mac-laptop/home.nix nixvim.homeModules.nixvim stylix.homeModules.stylix ];
|
||||
imports = [ ./hosts/mac-laptop/home.nix stylix.homeModules.stylix ];
|
||||
};
|
||||
}
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user