feat: frappuccino theme with base16

This commit is contained in:
Gustavo "Guz" L. de Mello
2024-01-05 19:49:31 -03:00
parent 19a59c7e6c
commit 6ec255c51f
6 changed files with 113 additions and 8 deletions

View File

@@ -86,7 +86,7 @@
# services.xserver.libinput.enable = true;
# Define a user account. Don't forget to set a password with passwd.
users.users.guz = {
users.users."guz" = {
isNormalUser = true;
description = "Guz";
extraGroups = [ "networkmanager" "wheel" ];
@@ -99,10 +99,7 @@
home-manager = {
extraSpecialArgs = { inherit inputs; };
users = {
"guz".imports = [
inputs.flatpaks.homeManagerModules.default
./home.nix
];
"guz" = import ./home.nix;
};
};

View File

@@ -1,11 +1,18 @@
{ config, pkgs, lib, ... }:
{ config, pkgs, inputs, ... }:
{
imports = [
inputs.flatpaks.homeManagerModules.default
../../modules/home-manager/theme.nix
];
# theme.accent = "f38ba8";
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "guz";
home.homeDirectory = "/home/guz";
# This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release
# introduces backwards incompatible changes.