2025-08-21 11:21:15 +02:00
|
|
|
{ config, pkgs, lib, desktop, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
../apps/browser.nix
|
|
|
|
|
../apps/picom.nix
|
|
|
|
|
../apps/zsh.nix
|
|
|
|
|
];
|
|
|
|
|
home.username = "lomig";
|
|
|
|
|
home.homeDirectory = "/home/lomig";
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
|
bat
|
|
|
|
|
nerd-fonts.iosevka
|
2025-08-21 16:21:54 +02:00
|
|
|
obsidian
|
2025-08-21 11:21:15 +02:00
|
|
|
telegram-desktop
|
|
|
|
|
tree
|
|
|
|
|
fastfetch
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
programs.zsh.enable = true;
|
|
|
|
|
home.stateVersion = "25.05"; # ou ton actuelle
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-31 12:03:52 +02:00
|
|
|
# vim: set ts=2 sw=2 sts=2 et :
|