Files
nix-files/home-nico.nix~
2024-11-25 21:31:03 +01:00

28 lines
365 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
go
];
home.stateVersion = "24.05";
programs.home-manager.enable = true;
}