mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-12-22 12:32:55 -05:00
Aly Raffauf
c7a6cd8773
Some checks failed
git-mirror / gitlab-sync (push) Has been cancelled
nix-build / adjustor-build (push) Has been cancelled
nix-build / clean-install-build (push) Has been cancelled
nix-build / emudeck-build (push) Has been cancelled
nix-build / hhd-ui-build (push) Has been cancelled
nix-build / rofi-bluetooth-build (push) Has been cancelled
nix-build / fallarbor-build (push) Has been cancelled
nix-build / lavaridge-build (push) Has been cancelled
nix-build / mauville-build (push) Has been cancelled
nix-build / pacifidlog-build (push) Has been cancelled
nix-build / petalburg-build (push) Has been cancelled
nix-build / rustboro-build (push) Has been cancelled
nix-build / slateport-build (push) Has been cancelled
nix-check / fmt-check (push) Has been cancelled
nix-check / eval-check (push) Has been cancelled
* flake.lock: Update Flake lock file updates: • Updated input 'disko': 'github:nix-community/disko/341482e2f4d888e3f60cae1c12c3df896e7230d8?narHash=sha256-i%2BUw8VOHzQe9YdNwKRbzvaPWLE07tYVqUDzSFTXhRgk%3D' (2024-11-27) → 'github:nix-community/disko/2814a5224a47ca19e858e027f7e8bff74a8ea9f1?narHash=sha256-2uMaVAZn7fiyTUGhKgleuLYe5%2BEAAYB/diKxrM7g3as%3D' (2024-11-30) • Updated input 'home-manager': 'github:nix-community/home-manager/2f7739d01080feb4549524e8f6927669b61c6ee3?narHash=sha256-6TrknJ8CpvSSF4gviQSeD%2Bwyj3siRcMvdBKhOXkEMKU%3D' (2024-11-28) → 'github:nix-community/home-manager/819f682269f4e002884702b87e445c82840c68f2?narHash=sha256-r8j6R3nrvwbT1aUp4EPQ1KC7gm0pu9VcV1aNaB%2BXG6Q%3D' (2024-11-29) • Updated input 'nix-gaming': 'github:fufexan/nix-gaming/effe1d54e23f430d3e803f63e9e47aba33acfb63?narHash=sha256-divlhUduT0/t8D9k11Yd3Ah3xpr302vV1KXxIMb8I3M%3D' (2024-11-28) → 'github:fufexan/nix-gaming/59363ec701ee3e994a6c8afc88b61d1fab40c66a?narHash=sha256-RIvcgs8yGix6g6694omcGpvAza5LxZfV5LmyXsw8c0I%3D' (2024-12-01) • Updated input 'nix-gaming/umu': 'git+https://github.com/Open-Wine-Components/umu-launcher/?dir=packaging/nix&ref=refs/heads/main&rev=f6a6af3191f5497d95d8f8aaa08826a45da199c4&submodules=1' (2024-11-23) → 'git+https://github.com/Open-Wine-Components/umu-launcher/?dir=packaging/nix&ref=refs/heads/main&rev=3277b47c9f87ecf736e1df7ed65cc0e25466f9b2&submodules=1' (2024-11-29) • Updated input 'nixpkgs': 'github:nixos/nixpkgs/4633a7c72337ea8fd23a4f2ba3972865e3ec685d?narHash=sha256-2ThgXBUXAE1oFsVATK1ZX9IjPcS4nKFOAjhPNKuiMn0%3D' (2024-11-25) → 'github:nixos/nixpkgs/970e93b9f82e2a0f3675757eb0bfc73297cc6370?narHash=sha256-jNRNr49UiuIwaarqijgdTR2qLPifxsVhlJrKzQ8XUIE%3D' (2024-11-28) • Updated input 'nur': 'github:nix-community/NUR/cc2a3158b6a714b98a8b891d6dcfc3a43039051f?narHash=sha256-ZliP697Djpq%2BJM4MuO6kvj5RWjCdg39ZQ2moFoqFbdE%3D' (2024-11-29) → 'github:nix-community/NUR/bddf3b72b641f9116c770ea5115d192f27c48f91?narHash=sha256-alQFJwNHVkXrZEkxQ6lK/pybjjJ3q4sYniXhsJphBnM%3D' (2024-12-01) • Updated input 'stylix': 'github:danth/stylix/7689e621f87bce7b6ab1925dfd70ad1f4c80f334?narHash=sha256-T5k5ill%2BPNIEW6KuS4CpUacMtZNJe2J2q5eBOF4xWuU%3D' (2024-11-26) → 'github:danth/stylix/d13ffb381c83b6139b9d67feff7addf18f8408fe?narHash=sha256-t1J6wgzGjvvGNfdd0ei8HnZf9sTw%2BSpvCNAX0i6Qgwc%3D' (2024-11-30) * tree-wide: migrate nerdfonts to new nerd-fonts namespace --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
51 lines
971 B
Nix
51 lines
971 B
Nix
{
|
|
pkgs,
|
|
self,
|
|
...
|
|
}: {
|
|
stylix = {
|
|
enable = true;
|
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/default-dark.yaml";
|
|
image = "${self.inputs.wallpapers}/Legion_Go_Meteorite_Wallpaper.jpg";
|
|
imageScalingMode = "fill";
|
|
polarity = "dark";
|
|
|
|
cursor = {
|
|
name = "Adwaita";
|
|
package = pkgs.adwaita-icon-theme;
|
|
size = 24;
|
|
};
|
|
|
|
fonts = {
|
|
monospace = {
|
|
name = "CaskaydiaCove Nerd Font";
|
|
package = pkgs.nerd-fonts.caskaydia-cove;
|
|
};
|
|
|
|
sansSerif = {
|
|
name = "UbuntuSans Nerd Font";
|
|
package = pkgs.nerd-fonts.ubuntu-sans;
|
|
};
|
|
|
|
serif = {
|
|
name = "Source Serif Pro";
|
|
package = pkgs.source-serif-pro;
|
|
};
|
|
|
|
sizes = {
|
|
applications = 12;
|
|
desktop = 11;
|
|
popups = 12;
|
|
terminal = 13;
|
|
};
|
|
};
|
|
|
|
opacity = {
|
|
applications = 1.0;
|
|
desktop = 0.8;
|
|
terminal = 0.8;
|
|
popups = 0.8;
|
|
};
|
|
};
|
|
}
|