feat(dregil): Set grub theme
This commit is contained in:
parent
75c91e50c1
commit
c615a6b4e7
4 changed files with 74 additions and 5 deletions
11
flake.nix
11
flake.nix
|
|
@ -4,6 +4,11 @@
|
|||
stable.url = "github:NixOS/nixpkgs/nixos-24.11";
|
||||
nixpkgs-droid.url = "github:NixOS/nixpkgs/nixos-24.05";
|
||||
|
||||
distro-grub-themes = {
|
||||
url = "github:AdisonCavani/distro-grub-themes";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
|
||||
pre-commit-hooks.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
|
|
@ -75,10 +80,11 @@
|
|||
};
|
||||
};
|
||||
|
||||
nixosConfigurations."thrall" = nixpkgs.lib.nixosSystem {
|
||||
nixosConfigurations."thrall" = nixpkgs.lib.nixosSystem rec {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
inherit system;
|
||||
};
|
||||
modules = [
|
||||
(
|
||||
|
|
@ -105,10 +111,11 @@
|
|||
];
|
||||
};
|
||||
|
||||
nixosConfigurations."dregil" = nixpkgs.lib.nixosSystem {
|
||||
nixosConfigurations."dregil" = nixpkgs.lib.nixosSystem rec {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
inherit system;
|
||||
stable = import inputs.stable { system = "x86_64-linux"; };
|
||||
};
|
||||
modules = [ ./hosts/dregil ];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue