.dotfiles/dot_config/flake/machines/wash/home.nix
2025-09-15 09:03:03 -04:00

41 lines
903 B
Nix

{pkgs, ...}: let
ff_gnome_theme = pkgs.fetchFromGitHub {
owner = "rafaelmardojai";
repo = "firefox-gnome-theme";
rev = "b655eaf16d4cbec9c3472f62eee285d4b419a808";
hash = "sha256-UqYGTBgI5ypGh0Kf6zZjom/vABg7HQocB4gmxzl12uo=";
};
in {
imports = [
../../home/common.nix
../../home/darkman.nix
../../home/home-backup.nix
../../home/gui.nix
../../home/gnome.nix
../../home/niri.nix
../../home/helide
];
programs.firefox = {
profiles.tyler = {
userChrome = builtins.readFile (ff_gnome_theme + "/userChrome.css");
userContent = builtins.readFile (ff_gnome_theme + "/userContent.css");
extraConfig = builtins.readFile (ff_gnome_theme + "/configuration/user.js");
};
};
home = {
username = "tyler";
homeDirectory = "/home/tyler";
packages = with pkgs; [
godot
];
stateVersion = "23.11";
};
}