23 lines
384 B
Nix
23 lines
384 B
Nix
|
|
{ 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
|
||
|
|
telegram-desktop
|
||
|
|
tree
|
||
|
|
fastfetch
|
||
|
|
];
|
||
|
|
|
||
|
|
programs.zsh.enable = true;
|
||
|
|
home.stateVersion = "25.05"; # ou ton actuelle
|
||
|
|
}
|
||
|
|
|