This commit is contained in:
LunarAkai 2025-03-14 16:30:17 +01:00
commit b1a3561040
4 changed files with 91 additions and 4 deletions

View file

@ -6,13 +6,16 @@
nvf.url = "github:notashelf/nvf";
alejandra.url = "github:kamadorueda/alejandra/3.1.0";
alejandra.inputs.nixpkgs.follows = "nixpkgs";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, home-manager, nvf, ... }@inputs: {
outputs = { self, nixpkgs, home-manager, nvf, alejandra, ... }@inputs: {
# use "nixos", or your hostname as the name of the configuration
# it's a better practice than "default" shown in the video
@ -26,10 +29,14 @@
nixos = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
modules = [
./configuration.nix
{
environment.systemPackages = [alejandra.defaultPackage.x86_64-linux];
}
./hosts/hummingbird/configuration.nix
inputs.home-manager.nixosModules.default
nvf.nixosModules.default
./nvf-configuration.nix
nvf.nixosModules.default
./nvf-configuration.nix
];
};
};