31 lines
613 B
Nix
31 lines
613 B
Nix
inputs: with inputs;
|
|
let
|
|
pkgs = import nixpkgs-unstable {
|
|
system = "x86_64-linux";
|
|
config.allowUnfree = true;
|
|
overlays = [];
|
|
};
|
|
in
|
|
{
|
|
"alex@dregil" = home-manager.lib.homeManagerConfiguration {
|
|
inherit pkgs;
|
|
modules = [
|
|
{
|
|
programs.home-manager.enable = true;
|
|
|
|
home = {
|
|
username = "alex";
|
|
homeDirectory = "/home/alex";
|
|
stateVersion = "22.11";
|
|
|
|
packages = with pkgs; [
|
|
lutris
|
|
];
|
|
};
|
|
|
|
# do not show home-manager notifications
|
|
news.display = "silent";
|
|
}
|
|
];
|
|
};
|
|
}
|