Compare commits
2 commits
96ba2614c4
...
cc9569c07e
Author | SHA1 | Date | |
---|---|---|---|
cc9569c07e | |||
fd8f93221d |
4 changed files with 34 additions and 29 deletions
7
modules/plymouth.nix
Normal file
7
modules/plymouth.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ ... }: {
|
||||||
|
boot.plymouth = {
|
||||||
|
enable = true;
|
||||||
|
themePackages = with pkgs; [ adi1090x-plymouth-themes ];
|
||||||
|
theme = "owl";
|
||||||
|
};
|
||||||
|
}
|
|
@ -6,6 +6,7 @@
|
||||||
../../modules/common.nix
|
../../modules/common.nix
|
||||||
../../modules/aarch64-emu.nix
|
../../modules/aarch64-emu.nix
|
||||||
../../modules/smartd.nix
|
../../modules/smartd.nix
|
||||||
|
../../modules/plymouth.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
|
@ -201,27 +202,27 @@
|
||||||
stylix = {
|
stylix = {
|
||||||
image =
|
image =
|
||||||
"${pkgs.kdePackages.breeze}/share/wallpapers/Next/contents/images_dark/2560x1440.png";
|
"${pkgs.kdePackages.breeze}/share/wallpapers/Next/contents/images_dark/2560x1440.png";
|
||||||
base16Scheme = {
|
base16Scheme = {
|
||||||
#attrSet until the new yaml is supported
|
#attrSet until the new yaml is supported
|
||||||
scheme = "Solar Flare";
|
scheme = "Solar Flare";
|
||||||
author = "Chuck Harmston (https://chuck.harmston.ch)";
|
author = "Chuck Harmston (https://chuck.harmston.ch)";
|
||||||
base00 = "18262F";
|
base00 = "18262F";
|
||||||
base01 = "222E38";
|
base01 = "222E38";
|
||||||
base02 = "586875";
|
base02 = "586875";
|
||||||
base03 = "667581";
|
base03 = "667581";
|
||||||
base04 = "85939E";
|
base04 = "85939E";
|
||||||
base05 = "A6AFB8";
|
base05 = "A6AFB8";
|
||||||
base06 = "E8E9ED";
|
base06 = "E8E9ED";
|
||||||
base07 = "F5F7FA";
|
base07 = "F5F7FA";
|
||||||
base08 = "EF5253";
|
base08 = "EF5253";
|
||||||
base09 = "E66B2B";
|
base09 = "E66B2B";
|
||||||
base0A = "E4B51C";
|
base0A = "E4B51C";
|
||||||
base0B = "7CC844";
|
base0B = "7CC844";
|
||||||
base0C = "52CBB0";
|
base0C = "52CBB0";
|
||||||
base0D = "33B5E1";
|
base0D = "33B5E1";
|
||||||
base0E = "A363D5";
|
base0E = "A363D5";
|
||||||
base0F = "D73C9A";
|
base0F = "D73C9A";
|
||||||
};
|
};
|
||||||
fonts = {
|
fonts = {
|
||||||
serif = {
|
serif = {
|
||||||
package = pkgs.noto-fonts;
|
package = pkgs.noto-fonts;
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
../../modules/aarch64-emu.nix
|
../../modules/aarch64-emu.nix
|
||||||
../../modules/networkd-base.nix
|
../../modules/networkd-base.nix
|
||||||
../../modules/smartd.nix
|
../../modules/smartd.nix
|
||||||
|
../../modules/plymouth.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
|
@ -274,11 +275,7 @@
|
||||||
];
|
];
|
||||||
persistence."/persist" = {
|
persistence."/persist" = {
|
||||||
hideMounts = true;
|
hideMounts = true;
|
||||||
directories = [
|
directories = [ "/srv/docker" "/tmp" "/etc/containers/networks" ];
|
||||||
"/srv/docker"
|
|
||||||
"/tmp"
|
|
||||||
"/etc/containers/networks"
|
|
||||||
];
|
|
||||||
files = [
|
files = [
|
||||||
"/etc/machine-id"
|
"/etc/machine-id"
|
||||||
"/etc/adjtime"
|
"/etc/adjtime"
|
||||||
|
@ -286,7 +283,7 @@
|
||||||
"/etc/ssh/ssh_host_rsa_key.pub"
|
"/etc/ssh/ssh_host_rsa_key.pub"
|
||||||
"/etc/ssh/ssh_host_ed25519_key"
|
"/etc/ssh/ssh_host_ed25519_key"
|
||||||
"/etc/ssh/ssh_host_ed25519_key.pub"
|
"/etc/ssh/ssh_host_ed25519_key.pub"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue