not far till perfection
This commit is contained in:
27
home-nico.nix~
Normal file
27
home-nico.nix~
Normal 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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user