nixos/home-manager/fred.nix
2026-02-24 19:18:42 +00:00

19 lines
387 B
Nix

# settings/fred.nix
{ config, pkgs, lib, ... }:
{
# Define the state version for Home Manager
home.stateVersion = "25.11";
# Packages for user
home.packages = with pkgs; [
#
];
# Allow unfree nix-shell maybe
home.file.".config/nixpkgs/config.nix".text = ''
{ allowUnfree = true; }
'';
# Import gnome home manager config
imports = [ ./gnome-hm.nix ];
}