nixos/modules/home/default.nix
Florian RICHER f5407927cf
All checks were successful
check / check (push) Successful in 31s
Move vscode to editors
2024-05-28 20:45:50 +02:00

21 lines
315 B
Nix

{ config, pkgs, ... }:
{
imports = [
./apps
./editors
./desktop
./shell
];
home = {
username = "florian";
homeDirectory = "/home/florian";
stateVersion = "24.05";
};
programs.home-manager.enable = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}