not far till perfection

This commit is contained in:
Nico
2024-11-25 21:31:03 +01:00
parent 740c47e610
commit 5c0f2c0209
14 changed files with 1008 additions and 10 deletions

27
home-nico.nix~ Normal file
View File

@@ -0,0 +1,27 @@
{ 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;
}