dregil: Update home-manager config

This commit is contained in:
Alexander Kobjolke 2023-03-27 21:15:51 +02:00
parent fcc7e04c7d
commit 43a6e0ef78
4 changed files with 48 additions and 2 deletions

View file

@ -0,0 +1,31 @@
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";
}
];
};
}