Files
nix-files/home-nico.nix
2025-04-01 21:04:27 +02:00

28 lines
366 B
Nix

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