forked from nico/dots
chore: reorganise nix files into base dir
This commit is contained in:
parent
0fdd56c432
commit
104a0ccd4a
13 changed files with 2 additions and 2 deletions
19
modules/boot.nix
Normal file
19
modules/boot.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
# theming of grub
|
||||
|
||||
{
|
||||
boot.loader.grub = {
|
||||
theme = pkgs.stdenv.mkDerivation {
|
||||
pname = "hyperfluent";
|
||||
version = "v1.0.1";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "Coopydood";
|
||||
repo = "HyperFluent-GRUB-Theme";
|
||||
rev = "62e525ea2aa250e3f37669d68eb355b6cc997d64";
|
||||
hash = "sha256-Als4Tp6VwzwHjUyC62mYyiej1pZL9Tzj4uhTRoL+U9Q=";
|
||||
};
|
||||
installPhase = "cp -r nixos $out";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue