Files
nix-files/home-nico.nix
2025-03-31 00:04:25 +02:00

27 lines
358 B
Nix

{ config, pkgs, inputs, ... }:
{
home.username = "n";
home.homeDirectory = "/home/n";
imports = [
./packages
];
nixpkgs = {
config = {
allowUnfree = true;
allowUnfreePredicate = (_: true);
};
};
home.packages = with pkgs; [
brave
];
home.stateVersion = "24.05";
programs.home-manager.enable = true;
}