nixos/home-manager/fred.nix

50 lines
1.3 KiB
Nix
Raw Normal View History

2026-01-20 08:41:53 +00:00
# settings/fred.nix
{ config, pkgs, lib, inputs, ... }:
2026-01-20 08:41:53 +00:00
{
# Define the state version for Home Manager
home.stateVersion = "25.11";
# Packages for user
home.packages = with pkgs; [
#
];
2026-02-24 19:17:42 +00:00
# Allow unfree nix-shell maybe
2026-02-24 19:18:42 +00:00
home.file.".config/nixpkgs/config.nix".text = ''
{ allowUnfree = true; }
'';
2026-01-20 08:41:53 +00:00
# Ghostty config
home.file.".config/ghostty/config".force = true;
home.file.".config/ghostty/config".text = ''
font-family = FiraMono Nerd Font
font-size = 11
font-thicken = true
theme = wallpaper
window-padding-x = 10
window-padding-y = 10
window-padding-balance = true
2026-04-08 20:19:35 +01:00
background-opacity = 0.98
confirm-close-surface = false
gtk-titlebar = false
cursor-style = bar
cursor-style-blink = true
'';
# Matugen config — templates for wallpaper-based color generation
home.file.".config/matugen/config.toml".text = ''
[config]
reload_apps = true
reload_apps_list = { ghostty = "" }
[templates.ghostty]
input_path = "${inputs.self}/templates/ghostty-colors"
output_path = "${config.home.homeDirectory}/.config/ghostty/themes/wallpaper"
[templates.gtk4]
input_path = "${inputs.self}/templates/gtk4-colors.css"
output_path = "${config.home.homeDirectory}/.config/gtk-4.0/colors.css"
'';
2026-01-20 08:41:53 +00:00
}