nixos/home-manager/fred.nix

33 lines
770 B
Nix
Raw Normal View History

2026-01-20 08:41:53 +00:00
# settings/fred.nix
{ config, pkgs, lib, ... }:
{
# 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 = JetBrainsMono Nerd Font
font-size = 11
theme = dark:Catppuccin Mocha,light:Catppuccin Latte
window-padding-x = 10
window-padding-y = 10
background-opacity = 0.95
confirm-close-surface = false
gtk-titlebar = false
'';
2026-01-20 08:41:53 +00:00
# Import gnome home manager config
imports = [ ./gnome-hm.nix ];
}