nixos/modules/home/default.nix
Florian RICHER 1a0c925449
modules: Revert vscode from flatpak to modules
If needed to be installed with flatpak, it can be installed from Discover
2024-09-15 13:54:43 +02:00

21 lines
266 B
Nix

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