Compare commits
No commits in common. "6ba082e672162f42463980ea98c5e2fe554c2332" and "b3c6a87a29dda28ce309167c5dffbc03ccbe88c5" have entirely different histories.
6ba082e672
...
b3c6a87a29
@ -1,5 +1,6 @@
|
||||
{
|
||||
inputs,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
@ -52,6 +53,28 @@
|
||||
|
||||
systemd.services.NetworkManager-wait-online.enable = false;
|
||||
|
||||
stylix = {
|
||||
enable = true;
|
||||
autoEnable = false;
|
||||
image = config.lib.stylix.pixel "base00";
|
||||
polarity = "dark";
|
||||
|
||||
# colors, dracula, eris, google-dark, framer, horizon-terminal-dark, humanoid-dark, isotope, onedark-dark, spacemacs, windows-nt
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/colors.yaml";
|
||||
|
||||
cursor = {
|
||||
name = "Adwaita";
|
||||
package = pkgs.adwaita-icon-theme;
|
||||
};
|
||||
|
||||
fonts = {
|
||||
sansSerif = {
|
||||
name = "Segoe UI";
|
||||
package = pkgs.segoe-ui-ttf;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
fonts.packages = with pkgs; [
|
||||
noto-fonts
|
||||
(nerdfonts.override {
|
||||
|
@ -1,5 +1,4 @@
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
@ -24,33 +23,5 @@ in
|
||||
enable = true;
|
||||
# withUWSM = true;
|
||||
};
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
stylix = {
|
||||
enable = true;
|
||||
autoEnable = false;
|
||||
image = config.lib.stylix.pixel "base00";
|
||||
polarity = "dark";
|
||||
|
||||
# colors, dracula, eris, google-dark, framer, horizon-terminal-dark, humanoid-dark, isotope, onedark-dark, spacemacs, windows-nt
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/colors.yaml";
|
||||
|
||||
cursor = {
|
||||
name = "macOS";
|
||||
package = pkgs.apple-cursor;
|
||||
};
|
||||
|
||||
fonts = {
|
||||
sansSerif = {
|
||||
name = "SF Pro Text";
|
||||
package = pkgs.sf-pro;
|
||||
};
|
||||
emoji = {
|
||||
name = "Apple Color Emoji";
|
||||
package = pkgs.apple-color-emoji;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
@ -1,28 +0,0 @@
|
||||
{
|
||||
stdenv,
|
||||
fetchurl,
|
||||
lib,
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "apple-color-emoji";
|
||||
version = "18.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/samuelngs/apple-emoji-linux/releases/download/v${version}/AppleColorEmoji.ttf";
|
||||
hash = "sha256-pP0He9EUN7SUDYzwj0CE4e39SuNZ+SVz7FdmUviF6r0=";
|
||||
};
|
||||
|
||||
dontUnpack = true;
|
||||
|
||||
installPhase = ''
|
||||
install -Dm644 $src -t $out/share/fonts/truetype
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Apple Color Emoji for Linux";
|
||||
longDescription = "Brings Apple's vibrant emojis to your Linux experience";
|
||||
homepage = "https://github.com/samuelngs/apple-emoji-linux";
|
||||
license = lib.licenses.unfree;
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
@ -18,6 +18,10 @@
|
||||
./hyprland
|
||||
];
|
||||
|
||||
fonts.fontconfig.defaultFonts.sansSerif = [
|
||||
"Segoe UI"
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
# ardour
|
||||
# audacity
|
||||
|
@ -18,10 +18,6 @@ in
|
||||
./waybar.nix
|
||||
];
|
||||
|
||||
fonts.fontconfig.defaultFonts.sansSerif = [
|
||||
"SF Pro Text"
|
||||
];
|
||||
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
# plugins = [ hypr-dynamic-cursors ]; # https://github.com/VirtCode/hypr-dynamic-cursors
|
||||
|
Loading…
x
Reference in New Issue
Block a user