Files
dotfiles/users/root/home.nix

12 lines
212 B
Nix

{ ... }:
{
# The home.stateVersion option does not have a default and must be set
home.stateVersion = "23.05";
imports = [
../../programs/ssh.nix
];
home.file.test.text = "hello world\n";
}