21 lines
333 B
Nix
21 lines
333 B
Nix
{ 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
|
|
];
|
|
}
|