Fix rpi3 config

This commit is contained in:
Paul-Henri Froidmont 2023-03-28 16:34:46 +02:00
parent 9083c2f5cc
commit e2457ef4ba
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE
4 changed files with 50 additions and 54 deletions

View file

@ -1,11 +1,8 @@
{ config, options, lib, home-manager, ... }:
with lib;
with lib.my;
{
options = with types; {
user = mkOpt attrs { };
};
with lib.my; {
options = with types; { user = mkOpt attrs { }; };
config = {
@ -23,6 +20,7 @@ with lib.my;
users.${config.user.name} = {
home = {
enableNixpkgsReleaseCheck = true;
stateVersion = config.system.stateVersion;
};
};