minegrub!

This commit is contained in:
nora 2023-08-27 11:38:37 +02:00
parent dac43bf48b
commit 8d648972ab
3 changed files with 54 additions and 10 deletions

View file

@ -12,12 +12,10 @@
home-manager.url = "github:nix-community/home-manager/release-23.05";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
minegrub-theme.url = "github:Lxtharia/minegrub-theme/b6f8a3a7e2fd22d72e2dbdaf563ad0bcb5c78e45";
# TODO: Add any other flake you might need
# hardware.url = "github:nixos/nixos-hardware";
# Shameless plug: looking for a way to nixify your themes and make
# everything match nicely? Try nix-colors!
# nix-colors.url = "github:misterio77/nix-colors";
};
outputs = { nixpkgs, home-manager, ... }@inputs: {
@ -27,7 +25,10 @@
nixos = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; }; # Pass flake inputs to our config
# > Our main nixos configuration file <
modules = [ ./nixos/configuration.nix ];
modules = [
./nixos/configuration.nix
inputs.minegrub-theme.nixosModules.default
];
};
};