First installation on real system

 Gnome refinements
 Zed config updates
🐛 User login issue workaround
This commit is contained in:
Jo 2025-05-22 20:52:07 +02:00
parent 87c59890d5
commit 3e6f386f7f
10 changed files with 35 additions and 36 deletions

View file

@ -1,6 +1,7 @@
{
lib,
self,
pkgs,
config,
...
}: let
@ -33,6 +34,7 @@ in {
nix = {
enable = true;
use-lix = true;
use-nixld = true;
};
};
@ -43,6 +45,10 @@ in {
desktop.gnome.enable = true;
};
environment.systemPackages = with pkgs; [
nano
];
time.timeZone = mkDefault "Europe/Berlin";
};
}