feat: frappuccino theme with base16
This commit is contained in:
@@ -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;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user