Added base16 themes

This commit is contained in:
marc
2022-11-24 01:30:43 +01:00
parent b907606818
commit 23e0c5a9c8
35 changed files with 362 additions and 255 deletions

View File

@@ -1,5 +1,10 @@
{ config, pkgs, lib, ... }:
{ config, pkgs, lib, inputs, ... }:
with lib;
let
nix-colors-lib = inputs.nix-colors.lib-contrib { inherit pkgs; };
wallpaper = ../../data/wallpapers/globus.jpg;
in
{
imports = [
./hardware.nix
@@ -15,6 +20,13 @@
boot.loader.systemd-boot.enable = true;
# - Themeing ---------------------------------
colorScheme = nix-colors-lib.colorSchemeFromPicture {
path = wallpaper;
kind = "dark";
};
# - Modules ------------------------------------
samfelag.modules = {
@@ -32,6 +44,7 @@
# - Desktop ----------------------------------
desktop = {
inherit wallpaper;
enable = true;
laptop = true;
};
@@ -41,7 +54,6 @@
dev.git.userName = "marc";
dev.git.userEmail = "marc@sastre.cat";
dev.direnv.enable = true;
# - Other apps -------------------------------