Compare commits
49 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
ebbd174198 | ||
![]() |
934262351e | ||
![]() |
76fd545df0 | ||
![]() |
628af42ebc | ||
![]() |
f2456d81ba | ||
![]() |
f361f499dc | ||
![]() |
66385f0b07 | ||
![]() |
05797fabbc | ||
![]() |
f81569de32 | ||
![]() |
6baf612e9f | ||
![]() |
b666205a77 | ||
![]() |
e8a56d7e37 | ||
![]() |
08c7b2dbf8 | ||
![]() |
d74001ce02 | ||
![]() |
2d55929430 | ||
![]() |
22e0b8b77a | ||
![]() |
2455e4a85f | ||
![]() |
e8b33fbceb | ||
![]() |
03685a905a | ||
![]() |
56b8ea853d | ||
![]() |
768d066516 | ||
![]() |
6b9733172a | ||
![]() |
cd79d7012d | ||
![]() |
d2ff7f7653 | ||
![]() |
f57459404f | ||
![]() |
ef292b903f | ||
![]() |
10c1191130 | ||
![]() |
08324f165e | ||
![]() |
0159131956 | ||
![]() |
14ae5129f6 | ||
![]() |
c96f868e75 | ||
![]() |
f11153ec9e | ||
![]() |
5b77b7d1af | ||
![]() |
bed615d9eb | ||
![]() |
9983742f1e | ||
![]() |
fbaec0add5 | ||
![]() |
62ff6040c5 | ||
![]() |
0322756151 | ||
![]() |
215577b85a | ||
![]() |
dcf496458b | ||
![]() |
54da7c467a | ||
![]() |
b320e1a644 | ||
![]() |
557ec0dce4 | ||
![]() |
b1e6771c0a | ||
![]() |
70846604e1 | ||
![]() |
7af5af1407 | ||
![]() |
c9d32005fe | ||
![]() |
0fbb011503 | ||
![]() |
6d8e132c5b |
57
.github/workflows/nix.yml
vendored
Normal file
|
@ -0,0 +1,57 @@
|
|||
name: Check nix packages
|
||||
on:
|
||||
pull_request:
|
||||
paths:
|
||||
- "./*.nix"
|
||||
- ".github/workflows/nix.yml"
|
||||
- "assets/**"
|
||||
- "customize/**"
|
||||
push:
|
||||
branches: [master]
|
||||
paths:
|
||||
- "./*.nix"
|
||||
- ".github/workflows/nix.yml"
|
||||
- "assets/**"
|
||||
- "customize/**"
|
||||
jobs:
|
||||
flake:
|
||||
name: Check flake
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Check Nix flake inputs
|
||||
uses: DeterminateSystems/flake-checker-action@v5
|
||||
with:
|
||||
send-statistics: false
|
||||
fail-mode: true
|
||||
- name: Install Nix
|
||||
uses: DeterminateSystems/nix-installer-action@v9
|
||||
- name: Check repository
|
||||
run: nix flake check
|
||||
matrix:
|
||||
name: Generate build matrix
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
themes: ${{ steps.generate-matrix.outputs.themes }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Generate matrix
|
||||
id: generate-matrix
|
||||
run: |
|
||||
THEMES=$(ls assets/backgrounds/ | sed 's/\.png$//g' | jq --raw-input | jq --slurp -c)
|
||||
echo "themes=$THEMES" >> $GITHUB_OUTPUT
|
||||
build:
|
||||
name: Check nix build for theme ${{ matrix.theme }}
|
||||
runs-on: ubuntu-latest
|
||||
needs:
|
||||
- matrix
|
||||
strategy:
|
||||
matrix:
|
||||
theme: ${{ fromJSON(needs.matrix.outputs.themes) }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install Nix
|
||||
uses: DeterminateSystems/nix-installer-action@v9
|
||||
- name: Build package
|
||||
run: nix build .#${{ matrix.theme }}-grub-theme
|
||||
|
4
.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
.envrc
|
||||
.direnv
|
||||
.vscode
|
||||
result
|
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 40 KiB |
BIN
assets/backgrounds/framework13.png
Normal file
After Width: | Height: | Size: 75 KiB |
BIN
assets/backgrounds/fujitsu.png
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
assets/backgrounds/hp-omen.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
assets/backgrounds/supermicro.png
Normal file
After Width: | Height: | Size: 53 KiB |
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 2.5 KiB |
BIN
assets/splash_image.jpg
Normal file
After Width: | Height: | Size: 32 KiB |
28
build/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ stdenvNoCC, lib, theme }:
|
||||
let
|
||||
themes = builtins.map (theme: (builtins.head (lib.strings.splitString "." theme))) (builtins.attrNames (builtins.readDir ./../assets/backgrounds));
|
||||
in
|
||||
assert builtins.any (x: x == theme) themes;
|
||||
|
||||
stdenvNoCC.mkDerivation {
|
||||
name = "distro-grub-themes";
|
||||
src = ./../.;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out
|
||||
cp ./assets/backgrounds/${theme}.png $out/background.png
|
||||
cp ./assets/splash_image.jpg $out/splash_image.jpg
|
||||
cp -r ./assets/icons $out
|
||||
cp -r ./assets/fonts/. $out
|
||||
cp -r ./assets/menu/. $out
|
||||
cp -r ./assets/theme.txt $out
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/AdisonCavani/distro-grub-themes";
|
||||
description = "A pack of GRUB2 themes for each Linux distribution";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ zakuciael ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
28
build/module.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ pkgs, lib, config, ... }:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.distro-grub-themes;
|
||||
themes = builtins.map (theme: (builtins.head (lib.strings.splitString "." theme))) (builtins.attrNames (builtins.readDir ./../assets/backgrounds));
|
||||
in
|
||||
{
|
||||
options.distro-grub-themes = {
|
||||
enable = mkEnableOption "Enable Distro Grub Theme";
|
||||
theme = mkOption {
|
||||
type = types.enum themes;
|
||||
default = "nixos";
|
||||
example = "arch-linux";
|
||||
description = ''
|
||||
Selected theme name.
|
||||
IMPORTANT! Theme name must be the same as in assert/backgrounds directory without the extension
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf (cfg.enable)
|
||||
{
|
||||
boot.loader.grub = {
|
||||
theme = pkgs.callPackage ./default.nix { theme = cfg.theme; };
|
||||
splashImage = ./../assets/splash_image.jpg;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -84,6 +84,84 @@ sudo eopkg install grub-customizer
|
|||
To revert back to the orignal KDE Neon theme, open GRUB Customizer, and in the Appearance settings tab, change the theme dropdown back to breeze.
|
||||
</Callout>
|
||||
|
||||
## Installation via Nix Flakes
|
||||
### Prerequisites
|
||||
- Nix 2.4 or later
|
||||
- Experimental features `nix-command` and `flakes` enabled.
|
||||
- You can achive that by setting the following options and rebuilding your system.
|
||||
|
||||
```nix:configuration.nix
|
||||
nix = {
|
||||
package = pkgs.nixFlakes;
|
||||
extraOptions = ''
|
||||
experimental-features = nix-command flakes
|
||||
'';
|
||||
};
|
||||
```
|
||||
|
||||
### NixOS module
|
||||
To use this theme as a NixOS module, a bare-minimum configuration would be as follows:
|
||||
```nix:flake.nix
|
||||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||
distro-grub-themes.url = "github:AdisonCavani/distro-grub-themes";
|
||||
};
|
||||
outputs = { self, nixpkgs, ... }@inputs: {
|
||||
nixosConfigurations."default" = nixpkgs.lib.nixosSystem rec {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./configuration.nix
|
||||
inputs.distro-grub-themes.nixosModules.${system}.default
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
```
|
||||
|
||||
```nix:configuration.nix
|
||||
{ config, pkgs, lib, ... }: {
|
||||
distro-grub-themes = {
|
||||
enable = true;
|
||||
theme = "<theme_name>";
|
||||
};
|
||||
}
|
||||
```
|
||||
|
||||
### Standalone setup
|
||||
To use this theme in a standalone setup, a bare-minimum configuration would be as follows:
|
||||
```nix:flake.nix
|
||||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||
distro-grub-themes.url = "github:AdisonCavani/distro-grub-themes";
|
||||
};
|
||||
outputs = { self, nixpkgs, ... }@inputs: {
|
||||
nixosConfigurations."default" = nixpkgs.lib.nixosSystem rec {
|
||||
system = "x86_64-linux";
|
||||
|
||||
specialArgs = {
|
||||
# Pass system and inputs to the configuration.nix file
|
||||
inherit system inputs;
|
||||
};
|
||||
|
||||
modules = [
|
||||
./configuration.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
```
|
||||
```nix:configuration.nix
|
||||
{ config, pkgs, lib, inputs, system, ... }: {
|
||||
|
||||
boot.loader.grub = rec {
|
||||
theme = inputs.distro-grub-themes.packages.${system}.<theme_name>-grub-theme;
|
||||
splashImage = "${theme}/splash_image.jpg";
|
||||
};
|
||||
}
|
||||
```
|
||||
|
||||
## Manual Installation
|
||||
|
||||
In order to clone the repository from GitHub, you have to install Git, via the `git` package.
|
||||
|
@ -108,15 +186,15 @@ sudo mkdir BOOT_GRUB_LOCATION/themes
|
|||
#### Edit or use a pre-made theme
|
||||
|
||||
```shell
|
||||
cd distro-grub-themes/customize
|
||||
cd distro-grub-themes/themes
|
||||
```
|
||||
|
||||
#### Copy theme
|
||||
|
||||
The theme must be unpacked inside a folder before you can copy it.
|
||||
The theme must be unpacked inside a folder before you can install it.
|
||||
|
||||
```
|
||||
sudo cp -r <theme_name>/ BOOT_GRUB_LOCATION/themes
|
||||
sudo tar -C BOOT_GRUB_LOCATION/themes/<theme_name> -xf <theme_name>.tar
|
||||
```
|
||||
|
||||
#### Edit GRUB config
|
||||
|
|
61
flake.lock
generated
Normal file
|
@ -0,0 +1,61 @@
|
|||
{
|
||||
"nodes": {
|
||||
"flake-utils": {
|
||||
"inputs": {
|
||||
"systems": "systems"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1731533236,
|
||||
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
|
||||
"owner": "numtide",
|
||||
"repo": "flake-utils",
|
||||
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "numtide",
|
||||
"repo": "flake-utils",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1731676054,
|
||||
"narHash": "sha256-OZiZ3m8SCMfh3B6bfGC/Bm4x3qc1m2SVEAlkV6iY7Yg=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "5e4fbfb6b3de1aa2872b76d49fafc942626e2add",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nixos",
|
||||
"ref": "nixos-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"flake-utils": "flake-utils",
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
},
|
||||
"systems": {
|
||||
"locked": {
|
||||
"lastModified": 1681028828,
|
||||
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
||||
"owner": "nix-systems",
|
||||
"repo": "default",
|
||||
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nix-systems",
|
||||
"repo": "default",
|
||||
"type": "github"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
"version": 7
|
||||
}
|
40
flake.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
description = "A pack of GRUB2 themes for each Linux distribution";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
};
|
||||
|
||||
outputs =
|
||||
{ self, nixpkgs, flake-utils }:
|
||||
let
|
||||
systems = [ "aarch64-linux" "i686-linux" "x86_64-linux" ];
|
||||
in
|
||||
flake-utils.lib.eachSystem systems (
|
||||
system:
|
||||
let
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
themeNames = builtins.attrNames (builtins.readDir ./assets/backgrounds);
|
||||
themePackages = builtins.listToAttrs (builtins.map
|
||||
(theme:
|
||||
let name = (builtins.head (pkgs.lib.strings.splitString "." theme)); in {
|
||||
name = name + "-grub-theme";
|
||||
value = pkgs.callPackage ./build/default.nix { theme = name; };
|
||||
})
|
||||
themeNames);
|
||||
in
|
||||
{
|
||||
packages = {
|
||||
default = pkgs.callPackage ./build/default.nix { theme = "nixos"; };
|
||||
} // themePackages;
|
||||
|
||||
devShells.default = pkgs.mkShell {
|
||||
nativeBuildInputs = with pkgs; [ nixd nixpkgs-fmt act jq ];
|
||||
};
|
||||
|
||||
nixosModules.default = ./build/module.nix;
|
||||
}
|
||||
);
|
||||
}
|
||||
|
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 69 KiB |
BIN
preview/framework13.png
Normal file
After Width: | Height: | Size: 116 KiB |
BIN
preview/fujitsu.png
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
preview/supermicro.png
Normal file
After Width: | Height: | Size: 72 KiB |
24
themes.json
|
@ -12,9 +12,6 @@
|
|||
{
|
||||
"name": "Bedrock Linux"
|
||||
},
|
||||
{
|
||||
"name": "CentOS"
|
||||
},
|
||||
{
|
||||
"name": "Debian"
|
||||
},
|
||||
|
@ -136,6 +133,10 @@
|
|||
{
|
||||
"name": "Vanilla OS",
|
||||
"versionAdded": "v3.2"
|
||||
},
|
||||
{
|
||||
"name": "CentOS",
|
||||
"versionAdded": "v3.3"
|
||||
}
|
||||
],
|
||||
"vendors": [
|
||||
|
@ -160,6 +161,9 @@
|
|||
{
|
||||
"name": "Framework"
|
||||
},
|
||||
{
|
||||
"name": "Framework 13"
|
||||
},
|
||||
{
|
||||
"name": "Gigabyte"
|
||||
},
|
||||
|
@ -220,6 +224,18 @@
|
|||
{
|
||||
"name": "Medion",
|
||||
"versionAdded": "v3.2"
|
||||
},
|
||||
{
|
||||
"name": "Supermicro",
|
||||
"versionAdded": "v3.3"
|
||||
},
|
||||
{
|
||||
"name": "Fujitsu",
|
||||
"versionAdded": "v3.3"
|
||||
},
|
||||
{
|
||||
"name": "HP Omen",
|
||||
"versionAdded": "v3.3"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|