nixos-demo/users/demo/home/default.nix

21 lines
333 B
Nix
Raw Permalink Normal View History

2025-07-12 00:28:21 +02:00
{ lib, ... }:
{
programs.home-manager.enable = true;
home = {
username = "demo";
homeDirectory = lib.mkForce "/home/demo";
stateVersion = "25.05";
};
# https://nix-community.github.io/home-manager/options.xhtml
imports = [
./bash.nix
./gnome.nix
./git.nix
./firefox.nix
./ssh.nix
];
}